core: removed nonce resetting from the block processor.

All nonce error handling has been moved to the worker
This commit is contained in:
obscuren
2015-04-21 11:27:12 +02:00
parent 1d6d42919e
commit 093d6d5074
3 changed files with 7 additions and 4 deletions

View File

@ -62,6 +62,7 @@ func (ms *ManagedState) NewNonce(addr common.Address) uint64 {
}
}
account.nonces = append(account.nonces, true)
return uint64(len(account.nonces)-1) + account.nstart
}