Skip to content

Commit

Permalink
eos: fixed error reporting in the gRPC client
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Dec 17, 2024
1 parent 3c82216 commit e571b45
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/eosclient/eosgrpc/eosgrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,14 @@ func (c *Client) getRespError(rsp *erpc.NSResponse, err error) error {
return nil
}

return errtypes.InternalError("Err from EOS: " + fmt.Sprintf("%#v", rsp.Error))
switch rsp.Error.Code {
case 16: // EBUSY
return eosclient.FileIsLockedError
case 17: // EEXIST
return eosclient.AttrAlreadyExistsError
default:
return errtypes.InternalError(fmt.Sprintf("%s (code: %d)", rsp.Error.Msg, rsp.Error.Code))
}
}

// Common code to create and initialize a NSRequest.
Expand Down

0 comments on commit e571b45

Please sign in to comment.