git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 229256951b870dc5f3a910c2e413c4df95f6cefa

Files: 229256951b870dc5f3a910c2e413c4df95f6cefa / runBlock.js

254 bytesRaw
1 // run block; the block message handler
2 runBlock(block, environment = new Environment()) {
3 // verify block then run each tx
4 block.tx.forEach((tx) => {
5 this.runTx(tx, environment)
6 })
7 }
8
9 // run blockchain
10 // runBlockchain () {}
11

Built with git-ssb-web