We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae700c commit e742d5eCopy full SHA for e742d5e
evmrpc/block.go
@@ -3,6 +3,7 @@ package evmrpc
3
import (
4
"context"
5
"crypto/sha256"
6
+ "encoding/hex"
7
"errors"
8
"fmt"
9
"math/big"
@@ -254,7 +255,7 @@ func EncodeTmBlock(
254
255
continue
256
}
257
if !fullTx {
- transactions = append(transactions, th)
258
+ transactions = append(transactions, "0x"+hex.EncodeToString(th[:]))
259
} else {
260
ti := uint64(receipt.TransactionIndex)
261
to := k.GetEVMAddressOrDefault(ctx, sdk.MustAccAddressFromBech32(m.Contract))
0 commit comments