accounts/abi/bind/backends: remove redundant type specifiers

This commit is contained in:
Matthew Halpern 2019-02-14 17:02:30 -08:00
parent 7f6b05aa43
commit 63960a7d89

View file

@ -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 // Determine the lowest and highest possible gas limits to binary search in between
var ( var (
lo uint64 = params.TxGas - 1 lo = params.TxGas - 1
hi uint64 hi uint64
cap uint64 cap uint64
) )