Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wavesplatform/gowaves
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 29f890ba55bb1aea6ba87fbbfd314a6aed14f4da
Choose a base ref
..
head repository: wavesplatform/gowaves
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 876fb11ad2fd2bf03a81b224eca92b9663465d21
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkg/state/invoke_applier.go
2 changes: 1 addition & 1 deletion pkg/state/invoke_applier.go
Original file line number Diff line number Diff line change
@@ -940,7 +940,7 @@ func (ia *invokeApplier) handleInvokeScriptInvocationError(
// Reject transaction after certain height
rejectTx = rejectTx || info.checkerInfo.height >= ia.settings.InternalInvokeCorrectFailRejectBehaviourAfterHeight
case ride.Undefined, ride.EvaluationFailure: // Unhandled or evaluator error
return nil, errors.Wrapf(invErr, "invocation of transaction '%s' failed with error type value (%v)", txID.String(), t)
return nil, errors.Wrapf(invErr, "invocation of transaction '%s' failed with error type value (%v)", txID.String(), et)
default:
return nil, errors.Wrapf(invErr, "invocation of transaction '%s' failed with unknown error type value (%v)", txID.String(), et)
}