@leofcoin/chain 1.3.9 → 1.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/demo/chain.browser.js +7663 -570
- package/demo/workers/machine-worker.js +28 -566
- package/dist/865.browser.js +10 -0
- package/dist/browser/workers/machine-worker.js +1 -1
- package/dist/chain.browser.js +66838 -0
- package/dist/chain.js +467 -283
- package/dist/generate-account.browser.js +50 -0
- package/dist/messages.browser.js +328 -0
- package/dist/module/chain.js +462 -279
- package/dist/module/workers/machine-worker.js +1 -1
- package/dist/multi-wallet.browser.js +15 -0
- package/dist/node.browser.js +9858 -0
- package/dist/pako.browser.js +6900 -0
- package/dist/peernet-swarm.browser.js +839 -0
- package/dist/storage.browser.js +3724 -0
- package/dist/workers/machine-worker.js +1 -1
- package/dist/wrtc.browser.js +28 -0
- package/package.json +4 -3
- package/rollup.config.js +17 -27
- package/src/chain.js +119 -253
- package/src/contract.js +51 -0
- package/src/machine.js +10 -5
- package/src/protocol.js +3 -0
- package/src/state.js +2 -2
- package/src/transaction.js +233 -0
- package/src/type.index.d.ts +21 -0
- package/test/chain.js +16 -14
- package/webpack.config.js +2 -1
|
@@ -13338,7 +13338,7 @@ const tasks = async (e) => {
|
|
|
13338
13338
|
});
|
|
13339
13339
|
} catch (e) {
|
|
13340
13340
|
worker.postMessage({
|
|
13341
|
-
type: '
|
|
13341
|
+
type: 'runError',
|
|
13342
13342
|
message: e.message,
|
|
13343
13343
|
id
|
|
13344
13344
|
});
|