good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
2ac61a99
Unverified
Commit
2ac61a99
authored
6 years ago
by
Martin Holst Swende
Browse files
Options
Downloads
Patches
Plain Diff
ethapi: default to use eip-155 protected transactions
parent
c57166ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
internal/ethapi/api.go
+3
-15
3 additions, 15 deletions
internal/ethapi/api.go
with
3 additions
and
15 deletions
internal/ethapi/api.go
+
3
−
15
View file @
2ac61a99
...
...
@@ -356,11 +356,7 @@ func (s *PrivateAccountAPI) signTransaction(ctx context.Context, args *SendTxArg
// Assemble the transaction and sign with the wallet
tx
:=
args
.
toTransaction
()
var
chainID
*
big
.
Int
if
config
:=
s
.
b
.
ChainConfig
();
config
.
IsEIP155
(
s
.
b
.
CurrentBlock
()
.
Number
())
{
chainID
=
config
.
ChainID
}
return
wallet
.
SignTxWithPassphrase
(
account
,
passwd
,
tx
,
chainID
)
return
wallet
.
SignTxWithPassphrase
(
account
,
passwd
,
tx
,
s
.
b
.
ChainConfig
()
.
ChainID
)
}
// SendTransaction will create a transaction from the given arguments and
...
...
@@ -1186,11 +1182,7 @@ func (s *PublicTransactionPoolAPI) sign(addr common.Address, tx *types.Transacti
return
nil
,
err
}
// Request the wallet to sign the transaction
var
chainID
*
big
.
Int
if
config
:=
s
.
b
.
ChainConfig
();
config
.
IsEIP155
(
s
.
b
.
CurrentBlock
()
.
Number
())
{
chainID
=
config
.
ChainID
}
return
wallet
.
SignTx
(
account
,
tx
,
chainID
)
return
wallet
.
SignTx
(
account
,
tx
,
s
.
b
.
ChainConfig
()
.
ChainID
)
}
// SendTxArgs represents the arguments to sumbit a new transaction into the transaction pool.
...
...
@@ -1306,11 +1298,7 @@ func (s *PublicTransactionPoolAPI) SendTransaction(ctx context.Context, args Sen
// Assemble the transaction and sign with the wallet
tx
:=
args
.
toTransaction
()
var
chainID
*
big
.
Int
if
config
:=
s
.
b
.
ChainConfig
();
config
.
IsEIP155
(
s
.
b
.
CurrentBlock
()
.
Number
())
{
chainID
=
config
.
ChainID
}
signed
,
err
:=
wallet
.
SignTx
(
account
,
tx
,
chainID
)
signed
,
err
:=
wallet
.
SignTx
(
account
,
tx
,
s
.
b
.
ChainConfig
()
.
ChainID
)
if
err
!=
nil
{
return
common
.
Hash
{},
err
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment