Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion synthesizer/src/vm/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ impl<N: Network, C: ConsensusStorage<N>> VM<N, C> {
let result = match verification {
Ok(()) => match self.block_store().contains_state_root(&fee.global_state_root()) {
Ok(true) => Ok(()),
Ok(false) => bail!("Fee verification failed: global state root not found"),
Ok(false) => bail!("Fee verification failed: global state root not found"), // NOTE: review dependent codebases for this error message before changing it.
Err(error) => bail!("Fee verification failed: {error}"),
},
Err(error) => bail!("Fee verification failed: {error}"),
Expand Down