(pool *LegacyPool, addr common.Address, amount *big.Int)
| 308 | } |
| 309 | |
| 310 | func testAddBalance(pool *LegacyPool, addr common.Address, amount *big.Int) { |
| 311 | pool.mu.Lock() |
| 312 | pool.currentState.AddBalance(addr, amount) |
| 313 | pool.mu.Unlock() |
| 314 | } |
| 315 | |
| 316 | func testSetNonce(pool *LegacyPool, addr common.Address, nonce uint64) { |
| 317 | pool.mu.Lock() |
no test coverage detected