ReplayBlock replays the queries from block. It also checks and skips some preceding pooled queries.
(block *types.Block)
| 511 | // ReplayBlock replays the queries from block. It also checks and skips some preceding pooled |
| 512 | // queries. |
| 513 | func (s *State) ReplayBlock(block *types.Block) (err error) { |
| 514 | return s.ReplayBlockWithContext(context.Background(), block) |
| 515 | } |
| 516 | |
| 517 | // ReplayBlockWithContext replays the queries from block with context. It also checks and |
| 518 | // skips some preceding pooled queries. |