mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core: fix datarace in txpool pendingnoce, fixes #25870
This commit is contained in:
parent
a3c6d1d9b6
commit
e004e7d256
1 changed files with 3 additions and 0 deletions
|
|
@ -463,6 +463,9 @@ func (pool *TxPool) SetGasPrice(price *big.Int) {
|
|||
// Nonce returns the next nonce of an account, with all transactions executable
|
||||
// by the pool already applied on top.
|
||||
func (pool *TxPool) Nonce(addr common.Address) uint64 {
|
||||
pool.mu.RLock()
|
||||
defer pool.mu.RUnlock()
|
||||
|
||||
return pool.pendingNonces.get(addr)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue