|
|
@ -108,10 +108,10 @@ func (ec *Client) PeerCount(ctx context.Context) (uint64, error) { |
|
|
|
return uint64(result), err |
|
|
|
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) { |
|
|
|
func (ec *Client) BlockReceipts(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) ([]*types.Receipt, error) { |
|
|
|
var r []*types.Receipt |
|
|
|
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 { |
|
|
|
if err == nil && r == nil { |
|
|
|
return nil, ethereum.NotFound |
|
|
|
return nil, ethereum.NotFound |
|
|
|
} |
|
|
|
} |
|
|
|