Skip to content

Commit 906b730

Browse files
authored
Feat/debug witness memory issue (#1238)
* debug witness memory issue * bump version * update
1 parent 6ff7e2d commit 906b730

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

eth/api.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,6 @@ func generateWitness(blockchain *core.BlockChain, block *types.Block) (*stateles
376376
return nil, fmt.Errorf("failed to validate block %d: %w", block.Number(), err)
377377
}
378378

379-
if err = testWitness(blockchain, block, witness); err != nil {
380-
return nil, err
381-
}
382379
return witness, nil
383380
}
384381

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
VersionMajor = 5 // Major version component of the current release
2626
VersionMinor = 9 // Minor version component of the current release
27-
VersionPatch = 10 // Patch version component of the current release
27+
VersionPatch = 11 // Patch version component of the current release
2828
VersionMeta = "mainnet" // Version metadata to append to the version string
2929
)
3030

0 commit comments

Comments
 (0)