mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
accounts/abi/bind/backends: remove redundant type specifiers
This commit is contained in:
parent
7f6b05aa43
commit
63960a7d89
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ func (b *SimulatedBackend) EstimateGas(ctx context.Context, call ethereum.CallMs
|
|||
|
||||
// Determine the lowest and highest possible gas limits to binary search in between
|
||||
var (
|
||||
lo uint64 = params.TxGas - 1
|
||||
lo = params.TxGas - 1
|
||||
hi uint64
|
||||
cap uint64
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue