You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we enable the option --Xevm-worldstate-update-mode=JOURNALED in a node using the line-tracer plugin, the traces are modified and become invalid.
The two servers return different values for evmWorldUpdater.get(transaction.getTo().get())
in the case the JOURNALED option is enabled, we have:
0x2d8879046f1559e53eb052e949e9544bcb72f414 -> {nonce: UndoScalar{value=1, undoLog=[]}, balance:UndoScalar{value=0x0000000000000000000000000000000000000000000000000c61417e159debb7, undoLog=[UndoEntry[value=0x0000000000000000000000000000000000000000000000000c61417e159debb7, level=7847562], UndoEntry[value=0x0000000000000000000000000000000000000000000000000c6be9fa03f16bb7, level=7847604]]}, code:[not updated], storage:[not updated] }
which leads to invalid trace generation.
in the other case I have:
0x2d8879046f1559e53eb052e949e9544bcb72f414 -> {nonce: 1, balance:0x0000000000000000000000000000000000000000000000000c61417e159debb7, code:[not updated], storage:[not updated] }
The text was updated successfully, but these errors were encountered:
When we enable the option --Xevm-worldstate-update-mode=JOURNALED in a node using the line-tracer plugin, the traces are modified and become invalid.
The two servers return different values for evmWorldUpdater.get(transaction.getTo().get())
in the case the JOURNALED option is enabled, we have:
0x2d8879046f1559e53eb052e949e9544bcb72f414 -> {nonce: UndoScalar{value=1, undoLog=[]}, balance:UndoScalar{value=0x0000000000000000000000000000000000000000000000000c61417e159debb7, undoLog=[UndoEntry[value=0x0000000000000000000000000000000000000000000000000c61417e159debb7, level=7847562], UndoEntry[value=0x0000000000000000000000000000000000000000000000000c6be9fa03f16bb7, level=7847604]]}, code:[not updated], storage:[not updated] }
which leads to invalid trace generation.
in the other case I have:
0x2d8879046f1559e53eb052e949e9544bcb72f414 -> {nonce: 1, balance:0x0000000000000000000000000000000000000000000000000c61417e159debb7, code:[not updated], storage:[not updated] }
The text was updated successfully, but these errors were encountered: