mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
Feat/debug witness memory issue (#1238)
* debug witness memory issue * bump version * update
This commit is contained in:
parent
6ff7e2dbbc
commit
906b730d54
2 changed files with 1 additions and 4 deletions
|
|
@ -376,9 +376,6 @@ func generateWitness(blockchain *core.BlockChain, block *types.Block) (*stateles
|
||||||
return nil, fmt.Errorf("failed to validate block %d: %w", block.Number(), err)
|
return nil, fmt.Errorf("failed to validate block %d: %w", block.Number(), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = testWitness(blockchain, block, witness); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return witness, nil
|
return witness, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ import (
|
||||||
const (
|
const (
|
||||||
VersionMajor = 5 // Major version component of the current release
|
VersionMajor = 5 // Major version component of the current release
|
||||||
VersionMinor = 9 // Minor version component of the current release
|
VersionMinor = 9 // Minor version component of the current release
|
||||||
VersionPatch = 10 // Patch version component of the current release
|
VersionPatch = 11 // Patch version component of the current release
|
||||||
VersionMeta = "mainnet" // Version metadata to append to the version string
|
VersionMeta = "mainnet" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue