Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit f409c37

Browse files
author
Jan Xie
committed
fix pre_seal_finalize, should always commit state
1 parent 4449e81 commit f409c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/state_transition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def pre_seal_finalize(state, block):
8383
cs = get_consensus_strategy(state.config)
8484
if cs.block_pre_finalize:
8585
cs.block_pre_finalize(state, block)
86-
state.commit()
86+
state.commit()
8787

8888

8989
def post_seal_finalize(state, block):

0 commit comments

Comments
 (0)