()
| 140 | |
| 141 | class Blockchain { |
| 142 | constructor() { |
| 143 | this.chain = [this.createGenesisBlock()]; |
| 144 | this.difficulty = 2; |
| 145 | this.pendingTransactions = []; |
| 146 | this.miningReward = 100; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * @returns {Block} |
nothing calls this directly
no test coverage detected