*: simplify some error messages

Log:
2021-07-23T09:59:18.948+0300    WARN    contract invocation failed      {"tx": "de3e3c1f1d37e4528990f894dea5583fd320485ad3862a95eb0e8823eecf4a5f", "block": 9643, "error": "error encountered at instruction 1 (SYSCALL): error during call from native: error encountered at instruction 745 (CAT): invalid conversion: Map/ByteString"}

The word "error" appears 4 times here.
This commit is contained in:
Roman Khimov 2021-07-23 10:08:09 +03:00
parent 14a52c9e1b
commit 1d8ad5b84a
3 changed files with 3 additions and 3 deletions

View file

@ -120,7 +120,7 @@ func callExFromNative(ic *interop.Context, caller util.Uint160, cs *state.Contra
} }
// ErrNativeCall is returned for failed calls from native. // 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. // 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 { func CallFromNative(ic *interop.Context, caller util.Uint160, cs *state.Contract, method string, args []stackitem.Item, hasReturn bool) error {

View file

@ -405,7 +405,7 @@ func (c *httpClient) Do(req *http.Request) (*http.Response, error) {
Body: newResponseBody(resp.body), Body: newResponseBody(resp.body),
}, nil }, nil
} }
return nil, errors.New("error during request") return nil, errors.New("request failed")
} }
func newDefaultHTTPClient() oracle.HTTPClient { func newDefaultHTTPClient() oracle.HTTPClient {

View file

@ -33,7 +33,7 @@ type errorAtInstruct struct {
} }
func (e *errorAtInstruct) Error() string { 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 { func newError(ip int, op opcode.Opcode, err interface{}) *errorAtInstruct {