mol_crypto_lib 0.1.1633 → 0.1.1635
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/node.d.ts +1 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -1
- package/node.js.map +1 -1
- package/node.mjs +5 -1
- package/node.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.mjs
CHANGED
@@ -1015,7 +1015,7 @@ var $;
|
|
1015
1015
|
this.data.length = this.sub_from;
|
1016
1016
|
this.cursor = this.pub_from;
|
1017
1017
|
this.track_cut();
|
1018
|
-
this.cursor = $mol_wire_cursor.
|
1018
|
+
this.cursor = $mol_wire_cursor.stale;
|
1019
1019
|
}
|
1020
1020
|
track_cut() {
|
1021
1021
|
if (this.cursor < this.pub_from) {
|
@@ -2092,6 +2092,10 @@ var $;
|
|
2092
2092
|
this.emit();
|
2093
2093
|
return next;
|
2094
2094
|
}
|
2095
|
+
destructor() {
|
2096
|
+
super.destructor();
|
2097
|
+
this.cursor = $mol_wire_cursor.final;
|
2098
|
+
}
|
2095
2099
|
}
|
2096
2100
|
$.$mol_wire_task = $mol_wire_task;
|
2097
2101
|
})($ || ($ = {}));
|
package/node.test.js
CHANGED
@@ -1006,7 +1006,7 @@ var $;
|
|
1006
1006
|
this.data.length = this.sub_from;
|
1007
1007
|
this.cursor = this.pub_from;
|
1008
1008
|
this.track_cut();
|
1009
|
-
this.cursor = $mol_wire_cursor.
|
1009
|
+
this.cursor = $mol_wire_cursor.stale;
|
1010
1010
|
}
|
1011
1011
|
track_cut() {
|
1012
1012
|
if (this.cursor < this.pub_from) {
|
@@ -2083,6 +2083,10 @@ var $;
|
|
2083
2083
|
this.emit();
|
2084
2084
|
return next;
|
2085
2085
|
}
|
2086
|
+
destructor() {
|
2087
|
+
super.destructor();
|
2088
|
+
this.cursor = $mol_wire_cursor.final;
|
2089
|
+
}
|
2086
2090
|
}
|
2087
2091
|
$.$mol_wire_task = $mol_wire_task;
|
2088
2092
|
})($ || ($ = {}));
|