diff options
author | CDsigma <cdsigma271@gmail.com> | 2018-09-29 04:47:46 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-09-29 04:47:46 +0800 |
commit | a5aaab2f224f0871a838d0a97160c2c002eea4ab (patch) | |
tree | 486c29ee66baa6b307bd831133c34dc63e1ec34b /accounts/abi/bind | |
parent | f1b9a3e2f415f6fc43519fdfc5b28ac2afcdada0 (diff) | |
download | go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar.gz go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar.bz2 go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar.lz go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar.xz go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.tar.zst go-tangerine-a5aaab2f224f0871a838d0a97160c2c002eea4ab.zip |
accounts/abi/bind/backends: fix typo (#17749)
Diffstat (limited to 'accounts/abi/bind')
-rw-r--r-- | accounts/abi/bind/backends/simulated.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index fc0ccbf52..6f46fc149 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -208,7 +208,7 @@ func (b *SimulatedBackend) PendingNonceAt(ctx context.Context, account common.Ad } // SuggestGasPrice implements ContractTransactor.SuggestGasPrice. Since the simulated -// chain doens't have miners, we just return a gas price of 1 for any call. +// chain doesn't have miners, we just return a gas price of 1 for any call. func (b *SimulatedBackend) SuggestGasPrice(ctx context.Context) (*big.Int, error) { return big.NewInt(1), nil } |