dymension icon indicating copy to clipboard operation
dymension copied to clipboard

Refactor usage of `err.Error()`

Open mtsitrin opened this issue 4 months ago • 7 comments

code like

errorsmod.Wrap(ErrInvalidCreatorAddress, err.Error())

should be refactored to

errors.Join(ErrInvalidCreatorAddress, err)

mtsitrin avatar Oct 02 '24 07:10 mtsitrin