Skip to content

Commit

Permalink
fix typo in err print
Browse files Browse the repository at this point in the history
  • Loading branch information
sduchesneau committed Jan 23, 2024
1 parent 573ccb8 commit a3f77ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/exec/baseexec.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (e *BaseExecutor) wasmCall(outputGetter execout.ExecutionOutputGetter) (cal
}
if err != nil {
if err := e.ctx.Err(); err != nil {
return nil, fmt.Errorf("block %d: module %q: general wasm execution failed: %w: %s", clock.Number, e.moduleName, err)
return nil, fmt.Errorf("block %d: module %q: general wasm execution failed: %w", clock.Number, e.moduleName, err)
}
return nil, fmt.Errorf("block %d: module %q: general wasm execution failed: %w: %s", clock.Number, e.moduleName, ErrWasmDeterministicExec, err)
}
Expand Down

0 comments on commit a3f77ed

Please sign in to comment.