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
7d24a731
Commit
7d24a731
authored
Feb 14, 2019
by
Matthew Halpern
Committed by
Péter Szilágyi
Feb 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth/tracers: enforce camel case variable names (#19057)
parent
e6c06a1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tracers_test.go
eth/tracers/tracers_test.go
+2
-2
No files found.
eth/tracers/tracers_test.go
View file @
7d24a731
...
...
@@ -121,7 +121,7 @@ type callTracerTest struct {
}
func
TestPrestateTracerCreate2
(
t
*
testing
.
T
)
{
unsigned
_t
x
:=
types
.
NewTransaction
(
1
,
common
.
HexToAddress
(
"0x00000000000000000000000000000000deadbeef"
),
unsigned
T
x
:=
types
.
NewTransaction
(
1
,
common
.
HexToAddress
(
"0x00000000000000000000000000000000deadbeef"
),
new
(
big
.
Int
),
5000000
,
big
.
NewInt
(
1
),
[]
byte
{})
privateKeyECDSA
,
err
:=
ecdsa
.
GenerateKey
(
crypto
.
S256
(),
rand
.
Reader
)
...
...
@@ -129,7 +129,7 @@ func TestPrestateTracerCreate2(t *testing.T) {
t
.
Fatalf
(
"err %v"
,
err
)
}
signer
:=
types
.
NewEIP155Signer
(
big
.
NewInt
(
1
))
tx
,
err
:=
types
.
SignTx
(
unsigned
_t
x
,
signer
,
privateKeyECDSA
)
tx
,
err
:=
types
.
SignTx
(
unsigned
T
x
,
signer
,
privateKeyECDSA
)
if
err
!=
nil
{
t
.
Fatalf
(
"err %v"
,
err
)
}
...
...
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