Skip to content

Commit

Permalink
fix transient state error message
Browse files Browse the repository at this point in the history
  • Loading branch information
snissn committed Nov 21, 2024
1 parent 801dc0c commit ef679de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actors/evm/src/interpreter/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ impl<'r, RT: Runtime> System<'r, RT> {
transient_store,
KAMT_CONFIG.clone(),
)
.context_code(ExitCode::USR_ILLEGAL_STATE, "state not in blockstore")?,
.context_code(ExitCode::USR_ILLEGAL_STATE, "transient_state not in blockstore")?,
transient_data_lifespan: state.transient_data_lifespan,
nonce: state.nonce,
saved_state_root: Some(state_root),
Expand Down

0 comments on commit ef679de

Please sign in to comment.