@leofcoin/chain 1.7.141 → 1.7.142
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/exports/browser/chain.js +2 -2
- package/exports/chain.js +2 -2
- package/package.json +1 -1
package/exports/browser/chain.js
CHANGED
|
@@ -4132,7 +4132,7 @@ const isResolveError = (error) => error.name === 'ResolveError';
|
|
|
4132
4132
|
const isExecutionError = (error) => error.name === 'ExecutionError';
|
|
4133
4133
|
|
|
4134
4134
|
// import State from './state'
|
|
4135
|
-
const debug$2 =
|
|
4135
|
+
const debug$2 = createDebugger('leofcoin/machine');
|
|
4136
4136
|
class Machine {
|
|
4137
4137
|
constructor(blocks) {
|
|
4138
4138
|
this.states = {
|
|
@@ -4629,7 +4629,7 @@ class Jobber {
|
|
|
4629
4629
|
}
|
|
4630
4630
|
}
|
|
4631
4631
|
|
|
4632
|
-
const debug$1 =
|
|
4632
|
+
const debug$1 = createDebugger('leofcoin/state');
|
|
4633
4633
|
class State extends Contract {
|
|
4634
4634
|
#resolveErrored;
|
|
4635
4635
|
#lastResolvedTime;
|
package/exports/chain.js
CHANGED
|
@@ -272,7 +272,7 @@ class Contract extends Transaction {
|
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
// import State from './state'
|
|
275
|
-
const debug$2 =
|
|
275
|
+
const debug$2 = createDebugger('leofcoin/machine');
|
|
276
276
|
class Machine {
|
|
277
277
|
constructor(blocks) {
|
|
278
278
|
this.states = {
|
|
@@ -769,7 +769,7 @@ class Jobber {
|
|
|
769
769
|
}
|
|
770
770
|
}
|
|
771
771
|
|
|
772
|
-
const debug$1 =
|
|
772
|
+
const debug$1 = createDebugger('leofcoin/state');
|
|
773
773
|
class State extends Contract {
|
|
774
774
|
#resolveErrored;
|
|
775
775
|
#lastResolvedTime;
|