(self, number)
| 1432 | |
| 1433 | # move the tip back to a previous block |
| 1434 | def move_tip(self, number): |
| 1435 | self.tip = self.blocks[number] |
| 1436 | |
| 1437 | # adds transactions to the block and updates state |
| 1438 | def update_block(self, block_number, new_transactions): |