diff --git a/app/rpc/namespaces/eth/utils.go b/app/rpc/namespaces/eth/utils.go index 1f679ee60d..4c094b51b3 100644 --- a/app/rpc/namespaces/eth/utils.go +++ b/app/rpc/namespaces/eth/utils.go @@ -221,7 +221,7 @@ func CheckError(txRes sdk.TxResponse) (common.Hash, error) { case sdkerror.ErrMempoolIsFull.ABCICode(): return common.Hash{}, sdkerror.ErrMempoolIsFull case sdkerror.ErrTxTooLarge.ABCICode(): - return common.Hash{}, sdkerror.ErrTxTooLarge + return common.Hash{}, sdkerror.Wrapf(sdkerror.ErrTxTooLarge, txRes.RawLog) } return common.Hash{}, fmt.Errorf(txRes.RawLog) }