mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-17 13:36:37 +00:00
Fixed mining
This commit is contained in:
parent
7f8f008253
commit
00ec15c82e
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ func main() {
|
||||||
|
|
||||||
block.Nonce = pow.Search(block)
|
block.Nonce = pow.Search(block)
|
||||||
|
|
||||||
err := ethereum.BlockManager.ProcessBlockWithState(block, block.State())
|
err := ethereum.BlockManager.ProcessBlock(block)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue