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
331fa6d3
Commit
331fa6d3
authored
Oct 15, 2018
by
Evgeny
Committed by
Felix Lange
Oct 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
accounts/usbwallet: simplify code using -= operator (#17904)
parent
3e92c853
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ledger.go
accounts/usbwallet/ledger.go
+1
-1
trezor.go
accounts/usbwallet/trezor.go
+1
-1
No files found.
accounts/usbwallet/ledger.go
View file @
331fa6d3
...
@@ -350,7 +350,7 @@ func (w *ledgerDriver) ledgerSign(derivationPath []uint32, tx *types.Transaction
...
@@ -350,7 +350,7 @@ func (w *ledgerDriver) ledgerSign(derivationPath []uint32, tx *types.Transaction
signer
=
new
(
types
.
HomesteadSigner
)
signer
=
new
(
types
.
HomesteadSigner
)
}
else
{
}
else
{
signer
=
types
.
NewEIP155Signer
(
chainID
)
signer
=
types
.
NewEIP155Signer
(
chainID
)
signature
[
64
]
=
signature
[
64
]
-
byte
(
chainID
.
Uint64
()
*
2
+
35
)
signature
[
64
]
-=
byte
(
chainID
.
Uint64
()
*
2
+
35
)
}
}
signed
,
err
:=
tx
.
WithSignature
(
signer
,
signature
)
signed
,
err
:=
tx
.
WithSignature
(
signer
,
signature
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
accounts/usbwallet/trezor.go
View file @
331fa6d3
...
@@ -221,7 +221,7 @@ func (w *trezorDriver) trezorSign(derivationPath []uint32, tx *types.Transaction
...
@@ -221,7 +221,7 @@ func (w *trezorDriver) trezorSign(derivationPath []uint32, tx *types.Transaction
signer
=
new
(
types
.
HomesteadSigner
)
signer
=
new
(
types
.
HomesteadSigner
)
}
else
{
}
else
{
signer
=
types
.
NewEIP155Signer
(
chainID
)
signer
=
types
.
NewEIP155Signer
(
chainID
)
signature
[
64
]
=
signature
[
64
]
-
byte
(
chainID
.
Uint64
()
*
2
+
35
)
signature
[
64
]
-=
byte
(
chainID
.
Uint64
()
*
2
+
35
)
}
}
// Inject the final signature into the transaction and sanity check the sender
// Inject the final signature into the transaction and sanity check the sender
signed
,
err
:=
tx
.
WithSignature
(
signer
,
signature
)
signed
,
err
:=
tx
.
WithSignature
(
signer
,
signature
)
...
...
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