git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 439177b212e72f0e65ae91c034b8d4d8c9c85d9a

Files: 439177b212e72f0e65ae91c034b8d4d8c9c85d9a / 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