From 63960a7d89851bea1ccfa2226cfe586d1a79a528 Mon Sep 17 00:00:00 2001 From: Matthew Halpern Date: Thu, 14 Feb 2019 17:02:30 -0800 Subject: [PATCH] accounts/abi/bind/backends: remove redundant type specifiers --- accounts/abi/bind/backends/simulated.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index 400227c3a8..22a233f261 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -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 )