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
5662176f
Commit
5662176f
authored
Oct 22, 2014
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #149 from JosephGoulden/develop
Develop
parents
ce05634f
1880c6b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
chain.qml
mist/assets/qml/views/chain.qml
+5
-5
transaction.qml
mist/assets/qml/views/transaction.qml
+1
-1
No files found.
mist/assets/qml/views/chain.qml
View file @
5662176f
...
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
id
:
root
property
var
title
:
"Block
c
hain"
property
var
title
:
"Block
C
hain"
property
var
menuItem
objectName
:
"chainView"
...
...
@@ -63,12 +63,12 @@ Rectangle {
Menu
{
id
:
contextMenu
property
var
row
;
property
var
row
MenuItem
{
text
:
"Details"
onTriggered
:
{
popup
.
visible
=
true
popup
.
setDetails
(
blockModel
.
get
(
this
.
row
))
popup
.
setDetails
(
blockModel
.
get
(
contextMenu
.
row
))
}
}
...
...
@@ -77,7 +77,7 @@ Rectangle {
MenuItem
{
text
:
"Copy"
onTriggered
:
{
copyToClipboard
(
blockModel
.
get
(
this
.
row
).
hash
)
copyToClipboard
(
blockModel
.
get
(
contextMenu
.
row
).
hash
)
}
}
...
...
@@ -85,7 +85,7 @@ Rectangle {
text
:
"Dump State"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
var
hash
=
blockModel
.
get
(
this
.
row
).
hash
;
var
hash
=
blockModel
.
get
(
contextMenu
.
row
).
hash
;
gui
.
dumpState
(
hash
,
path
);
});
...
...
mist/assets/qml/views/transaction.qml
View file @
5662176f
...
...
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import
Ethereum
1.0
Rectangle
{
property
var
title
:
"New
t
ransaction"
property
var
title
:
"New
T
ransaction"
property
var
menuItem
objectName
:
"newTxView"
...
...
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