()
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public void run() { |
| 46 | ProofOfWorkBlock createdBlock = new ProofOfWorkBlock( |
| 47 | (ProofOfWorkBlock) this.getParent(), this.getMinter(), getCurrentTime(), |
| 48 | this.difficulty |
| 49 | ); |
| 50 | this.getMinter().receiveBlock(createdBlock); |
| 51 | } |
| 52 | } |
nothing calls this directly
no test coverage detected