- remove unused functions `check_mempool_equal` and `check_for_no_ban_on_rejected_tx`
- remove single liner functions `save_spendable_output` (a simple append to a local list) and `get_spendable_output` (only one callsite)
- rename `next_block` to `make_block`, and remove `block` shorthand (`block` is also used a variable name in `update_block`)
- remove the need to keep a dictionary of blocks (with arbitrary magic int as a key), a dictionary of block heights, and a reference to the tip block, by simply adding a `tip_height` counter and passing a block parameter to method `make_block` and function `update_block`.
- use the block returned by `make_block` instead of `self.tip`.
Depends on D10321