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
9b9a1b67
Unverified
Commit
9b9a1b67
authored
Oct 20, 2022
by
s7v7nislands
Committed by
GitHub
Oct 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
internal/ethapi, accounts/abi/backends: use error defined in core (#26012)
Co-authored-by:
seven
<
seven@nodereal.io
>
parent
b9ba6f6e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
simulated.go
accounts/abi/bind/backends/simulated.go
+1
-1
api.go
internal/ethapi/api.go
+1
-1
No files found.
accounts/abi/bind/backends/simulated.go
View file @
9b9a1b67
...
@@ -527,7 +527,7 @@ func (b *SimulatedBackend) EstimateGas(ctx context.Context, call ethereum.CallMs
...
@@ -527,7 +527,7 @@ func (b *SimulatedBackend) EstimateGas(ctx context.Context, call ethereum.CallMs
available
:=
new
(
big
.
Int
)
.
Set
(
balance
)
available
:=
new
(
big
.
Int
)
.
Set
(
balance
)
if
call
.
Value
!=
nil
{
if
call
.
Value
!=
nil
{
if
call
.
Value
.
Cmp
(
available
)
>=
0
{
if
call
.
Value
.
Cmp
(
available
)
>=
0
{
return
0
,
errors
.
New
(
"insufficient funds for transfer"
)
return
0
,
core
.
ErrInsufficientFundsForTransfer
}
}
available
.
Sub
(
available
,
call
.
Value
)
available
.
Sub
(
available
,
call
.
Value
)
}
}
...
...
internal/ethapi/api.go
View file @
9b9a1b67
...
@@ -1098,7 +1098,7 @@ func DoEstimateGas(ctx context.Context, b Backend, args TransactionArgs, blockNr
...
@@ -1098,7 +1098,7 @@ func DoEstimateGas(ctx context.Context, b Backend, args TransactionArgs, blockNr
available
:=
new
(
big
.
Int
)
.
Set
(
balance
)
available
:=
new
(
big
.
Int
)
.
Set
(
balance
)
if
args
.
Value
!=
nil
{
if
args
.
Value
!=
nil
{
if
args
.
Value
.
ToInt
()
.
Cmp
(
available
)
>=
0
{
if
args
.
Value
.
ToInt
()
.
Cmp
(
available
)
>=
0
{
return
0
,
errors
.
New
(
"insufficient funds for transfer"
)
return
0
,
core
.
ErrInsufficientFundsForTransfer
}
}
available
.
Sub
(
available
,
args
.
Value
.
ToInt
())
available
.
Sub
(
available
,
args
.
Value
.
ToInt
())
}
}
...
...
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