Files: 32d6817f60330c28d8efbe94308e107d379bb465 / runBlock.js
293 bytesRaw
1 | // run block; the block message handler:w |
2 | const Environment = require('./environment') |
3 | |
4 | module.exports = class runBlock { |
5 | constuctor (block, environment = new Environment()) { |
6 | // verify block then run each tx |
7 | block.tx.forEach((tx) => { |
8 | this.runTx(tx, environment) |
9 | }) |
10 | } |
11 | } |
12 |
Built with git-ssb-web