-
Team or ProjectNo response Module Affected
Rust Version1.84.1 Operating System
Issue DescriptionI deployed a new zkChain on sepolia following the documents. The sequencer was up and running. The logs look normal as follows:
Then I tried to bridge 0.1Eth to L2. This is the successful tx hash on sepolia: https://sepolia.etherscan.io/tx/0x0516be6e6ead2354df9abbc22a61608fd54836e0d73b8a011745d78db11fcdab But the sequencer crashes right after that with error: Here are the log message:
Could it be because of we reuse the wallets.yaml file when deploy a new chain? And so so transaction related to these wallets got pickup causing a mismatch? Or else, why are they mismatched? Expected BehaviorThe bridge transaction should be successful Current Behaviorthe bridge transaction failed and the sequencer crashes. Repository Link (if applicable)No response Additional DetailsNo response Prior Research
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This error indicates that some priority operations were not included when they should have been. Because "0" is on the right side, this means priority ops created during chain creation were not captured/detected by your server. You have previously modified the PRIORITY_EXPIRATION this might have affected those transactions being included by the server. By modifying the "processed_events" table you should be able to make the server refetch those. |
Beta Was this translation helpful? Give feedback.
This error indicates that some priority operations were not included when they should have been. Because "0" is on the right side, this means priority ops created during chain creation were not captured/detected by your server. You have previously modified the PRIORITY_EXPIRATION this might have affected those transactions being included by the server. By modifying the "processed_events" table you should be able to make the server refetch those.