diff --git a/pkg/core/interop/contract/call.go b/pkg/core/interop/contract/call.go index 620f849fc..d2ac7d4a4 100644 --- a/pkg/core/interop/contract/call.go +++ b/pkg/core/interop/contract/call.go @@ -120,7 +120,7 @@ func callExFromNative(ic *interop.Context, caller util.Uint160, cs *state.Contra } // ErrNativeCall is returned for failed calls from native. -var ErrNativeCall = errors.New("error during call from native") +var ErrNativeCall = errors.New("failed native call") // CallFromNative performs synchronous call from native contract. func CallFromNative(ic *interop.Context, caller util.Uint160, cs *state.Contract, method string, args []stackitem.Item, hasReturn bool) error { diff --git a/pkg/core/oracle_test.go b/pkg/core/oracle_test.go index 32c37468e..701ebfb83 100644 --- a/pkg/core/oracle_test.go +++ b/pkg/core/oracle_test.go @@ -405,7 +405,7 @@ func (c *httpClient) Do(req *http.Request) (*http.Response, error) { Body: newResponseBody(resp.body), }, nil } - return nil, errors.New("error during request") + return nil, errors.New("request failed") } func newDefaultHTTPClient() oracle.HTTPClient { diff --git a/pkg/vm/vm.go b/pkg/vm/vm.go index 106d5fb90..1ff7176e0 100644 --- a/pkg/vm/vm.go +++ b/pkg/vm/vm.go @@ -33,7 +33,7 @@ type errorAtInstruct struct { } func (e *errorAtInstruct) Error() string { - return fmt.Sprintf("error encountered at instruction %d (%s): %s", e.ip, e.op, e.err) + return fmt.Sprintf("at instruction %d (%s): %s", e.ip, e.op, e.err) } func newError(ip int, op opcode.Opcode, err interface{}) *errorAtInstruct {