Feat/debug witness memory issue (#1238)

* debug witness memory issue

* bump version

* update
This commit is contained in:
georgehao 2025-11-13 20:59:50 +08:00 committed by GitHub
parent 6ff7e2dbbc
commit 906b730d54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View file

@ -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)
}
if err = testWitness(blockchain, block, witness); err != nil {
return nil, err
}
return witness, nil
}

View file

@ -24,7 +24,7 @@ import (
const (
VersionMajor = 5 // Major 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
)