Files: 2a922dd52511e08d2503efb3f1e3e8b06b291cc4 / testEnvironment.js
249 bytesRaw
1 | const Environment = require('./environment.js') |
2 | const fakeBlockchain = require('./fakeBlockChain') |
3 | |
4 | module.exports = class TestEnvironment extends Environment { |
5 | async getBlockHash (height) { |
6 | return fakeBlockchain.getBlock(height).hash() |
7 | } |
8 | } |
9 |
Built with git-ssb-web