(ctx context.Context, blockNr *big.Int, blockHash common.Hash, diffHash common.Hash)
| 239 | } |
| 240 | |
| 241 | func (ec *Client) GetRootByDiffHash(ctx context.Context, blockNr *big.Int, blockHash common.Hash, diffHash common.Hash) (*core.VerifyResult, error) { |
| 242 | var result core.VerifyResult |
| 243 | err := ec.c.CallContext(ctx, &result, "eth_getRootByDiffHash", toBlockNumArg(blockNr), blockHash, diffHash) |
| 244 | return &result, err |
| 245 | } |
| 246 | |
| 247 | type rpcTransaction struct { |
| 248 | tx *types.Transaction |
nothing calls this directly
no test coverage detected