ethclient: fix BlockReceipts parameter encoding (#28087)

Co-authored-by: Felix Lange <fjl@twurst.com>
pull/28196/head
Andryanau Kanstantsin 1 year ago committed by GitHub
parent f6f64cc43d
commit 4985d83b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ethclient/ethclient.go

@ -108,10 +108,10 @@ func (ec *Client) PeerCount(ctx context.Context) (uint64, error) {
return uint64(result), err
}
// BlockReceipts returns the receipts of a given block number or hash
// BlockReceipts returns the receipts of a given block number or hash.
func (ec *Client) BlockReceipts(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) ([]*types.Receipt, error) {
var r []*types.Receipt
err := ec.c.CallContext(ctx, &r, "eth_getBlockReceipts", blockNrOrHash)
err := ec.c.CallContext(ctx, &r, "eth_getBlockReceipts", blockNrOrHash.String())
if err == nil && r == nil {
return nil, ethereum.NotFound
}

Loading…
Cancel
Save