Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
cf999c46
Commit
cf999c46
authored
Sep 26, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up
parent
dc944f75
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
37 deletions
+7
-37
debugger.qml
mist/assets/debugger/debugger.qml
+1
-1
html_messaging.js
mist/assets/ext/html_messaging.js
+0
-1
info.qml
mist/assets/qml/views/info.qml
+6
-35
No files found.
mist/assets/debugger/debugger.qml
View file @
cf999c46
...
...
@@ -357,7 +357,7 @@ ApplicationWindow {
anchors.right
:
parent
.
right
model
:
ListModel
{
ListElement
{
text
:
"Snippets"
;
value
:
""
}
ListElement
{
text
:
"Call Contract"
;
value
:
"var[2] in
;
\n
var ret;
\n\n
in[0] =
\"
arg1
\"\n
in[1] = 0xdeadbeef
\n\n
var success = call(0x0c542ddea93dae0c2fcb2cf175f03ad80d6be9a0, 0, 7000, in, ret)
\n\n
return ret"
}
ListElement
{
text
:
"Call Contract"
;
value
:
"var[2] in
= {
\"
arg1
\"
, 0xdeadbeef };
\n
var ret;
\n\n
var success = call(0x0c542ddea93dae0c2fcb2cf175f03ad80d6be9a0, 0, 7000, in, ret)
\n\n
return ret"
}
}
onCurrentIndexChanged
:
{
if
(
currentIndex
!=
0
)
{
...
...
mist/assets/ext/html_messaging.js
View file @
cf999c46
...
...
@@ -459,7 +459,6 @@
g_seed
++
;
console
.
log
(
data
)
navigator
.
qt
.
postMessage
(
JSON
.
stringify
(
data
));
}
...
...
mist/assets/qml/views/info.qml
View file @
cf999c46
...
...
@@ -121,40 +121,7 @@ Rectangle {
}
}
Slider
{
id
:
logLevelSlider
value
:
gui
.
getLogLevelInt
()
anchors
{
right
:
parent
.
right
top
:
parent
.
top
bottom
:
parent
.
bottom
rightMargin
:
5
leftMargin
:
5
topMargin
:
5
bottomMargin
:
5
}
orientation
:
Qt
.
Vertical
maximumValue
:
5
stepSize
:
1
onValueChanged
:
{
gui
.
setLogLevel
(
value
)
}
}
}
property
var
logModel
:
ListModel
{
id
:
logModel
}
/*
RowLayout {
id: logLayout
width: parent.width
height: 200
anchors.bottom: parent.bottom
/*
TableView {
id: logView
headerVisible: false
...
...
@@ -169,6 +136,7 @@ Rectangle {
model: logModel
}
*/
Slider
{
id
:
logLevelSlider
...
...
@@ -193,7 +161,10 @@ Rectangle {
}
}
}
*/
property
var
logModel
:
ListModel
{
id
:
logModel
}
function
addDebugMessage
(
message
){
debuggerLog
.
append
({
value
:
message
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment