aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2017-05-25 23:08:13 +0800
committerFelix Lange <fjl@twurst.com>2017-05-30 22:43:38 +0800
commitea11f7dd7aa77856a04d83d0db8f303d02e0ce14 (patch)
tree5ef4de2afde2e5c0ddfde52775e1001ff7f32c08 /eth
parent07aae19e5da66ed404453e6be70ab84db516207b (diff)
downloadgo-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar.gz
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar.bz2
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar.lz
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar.xz
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.tar.zst
go-tangerine-ea11f7dd7aa77856a04d83d0db8f303d02e0ce14.zip
internal/ethapi: add mutex around signing + nonce assignment
This prevents concurrent assignment of identical nonces when automatic assignment is used.
Diffstat (limited to 'eth')
-rw-r--r--eth/bind.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/bind.go b/eth/bind.go
index 245934183..e5abd8617 100644
--- a/eth/bind.go
+++ b/eth/bind.go
@@ -48,7 +48,7 @@ func NewContractBackend(apiBackend ethapi.Backend) *ContractBackend {
return &ContractBackend{
eapi: ethapi.NewPublicEthereumAPI(apiBackend),
bcapi: ethapi.NewPublicBlockChainAPI(apiBackend),
- txapi: ethapi.NewPublicTransactionPoolAPI(apiBackend),
+ txapi: ethapi.NewPublicTransactionPoolAPI(apiBackend, new(ethapi.AddrLocker)),
}
}