trac-msb 0.0.35 → 0.0.37
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/package.json +3 -3
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trac-msb",
|
|
3
3
|
"main": "msb.mjs",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.37",
|
|
5
5
|
"pear": {
|
|
6
6
|
"name": "trac-msb",
|
|
7
7
|
"type": "terminal"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"protomux-wakeup": "^2.2.1",
|
|
29
29
|
"ready-resource": "^1.0.0",
|
|
30
30
|
"safety-catch": "1.0.2",
|
|
31
|
-
"trac-wallet": "^0.0.
|
|
31
|
+
"trac-wallet": "^0.0.27",
|
|
32
32
|
"xache": "1.2.0",
|
|
33
33
|
"bare-assert": "^1.0.1",
|
|
34
34
|
"assert": "npm:bare-node-assert",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tls": "npm:bare-node-tls",
|
|
71
71
|
"bare-tty": "^3.2.0",
|
|
72
72
|
"tty": "npm:bare-node-tty",
|
|
73
|
-
"bare-url": "^1.
|
|
73
|
+
"bare-url": "^2.1.4",
|
|
74
74
|
"url": "npm:bare-node-url",
|
|
75
75
|
"bare-utils": "^1.0.0",
|
|
76
76
|
"util": "npm:bare-node-util",
|
package/src/index.js
CHANGED
|
@@ -310,8 +310,8 @@ export class MainSettlementBus extends ReadyResource {
|
|
|
310
310
|
|
|
311
311
|
async #getMnemonicInteractiveMode() {
|
|
312
312
|
const rl = readline.createInterface({
|
|
313
|
-
input:
|
|
314
|
-
output:
|
|
313
|
+
input: new tty.ReadStream(0),
|
|
314
|
+
output: new tty.WriteStream(1)
|
|
315
315
|
});
|
|
316
316
|
|
|
317
317
|
const question = (query) => {
|