(ctx context.Context, blockNumber *big.Int)
| 53 | } |
| 54 | |
| 55 | func (w *RandaoClient) HeaderByNumber(ctx context.Context, blockNumber *big.Int) (*types.Header, error) { |
| 56 | w.lg.Debug("Fetching header by number by Randao client", "number", blockNumber) |
| 57 | return w.rc.HeaderByNumber(ctx, blockNumber) |
| 58 | } |
| 59 | |
| 60 | // Close closes the RandaoClient and the underlying RPC client it talks to. |
| 61 | func (w *RandaoClient) Close() { |
nothing calls this directly
no test coverage detected