diff --git a/node/remote/node.go b/node/remote/node.go index f2a38729..78b6e482 100644 --- a/node/remote/node.go +++ b/node/remote/node.go @@ -203,7 +203,8 @@ func (cp *Node) BlockResults(height int64) (*tmctypes.ResultBlockResults, error) // Tx implements node.Node func (cp *Node) Tx(hash string) (*types.Tx, error) { - res, err := cp.txServiceClient.GetTx(context.Background(), &tx.GetTxRequest{Hash: hash}) + maxSizeOption := grpc.MaxCallRecvMsgSize(32 * 10e6) + res, err := cp.txServiceClient.GetTx(context.Background(), &tx.GetTxRequest{Hash: hash}, maxSizeOption) if err != nil { return nil, err }