@ledgerhq/live-cli 24.18.0-nightly.1 → 24.18.0-nightly.2
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/lib/cli.js +8 -3
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -528338,7 +528338,7 @@ var require_package8 = __commonJS({
|
|
|
528338
528338
|
module2.exports = {
|
|
528339
528339
|
name: "@ledgerhq/live-common",
|
|
528340
528340
|
description: "Common ground for the Ledger Live apps",
|
|
528341
|
-
version: "34.32.0-nightly.
|
|
528341
|
+
version: "34.32.0-nightly.2",
|
|
528342
528342
|
repository: {
|
|
528343
528343
|
type: "git",
|
|
528344
528344
|
url: "https://github.com/LedgerHQ/ledger-live.git"
|
|
@@ -535139,7 +535139,7 @@ var require_package9 = __commonJS({
|
|
|
535139
535139
|
"package.json"(exports2, module2) {
|
|
535140
535140
|
module2.exports = {
|
|
535141
535141
|
name: "@ledgerhq/live-cli",
|
|
535142
|
-
version: "24.18.0-nightly.
|
|
535142
|
+
version: "24.18.0-nightly.2",
|
|
535143
535143
|
description: "ledger-live CLI version",
|
|
535144
535144
|
repository: {
|
|
535145
535145
|
type: "git",
|
|
@@ -540522,6 +540522,11 @@ var envDefinitions = {
|
|
|
540522
540522
|
parser: boolParser,
|
|
540523
540523
|
desc: "Show a performance overlay on the app UI"
|
|
540524
540524
|
},
|
|
540525
|
+
STORAGE_PERFORMANCE_OVERLAY: {
|
|
540526
|
+
def: false,
|
|
540527
|
+
parser: boolParser,
|
|
540528
|
+
desc: "Show a performance overlay on the app storage"
|
|
540529
|
+
},
|
|
540525
540530
|
ETHEREUM_STUCK_TRANSACTION_TIMEOUT: {
|
|
540526
540531
|
def: 5 * 60 * 1e3,
|
|
540527
540532
|
parser: intParser,
|
|
@@ -801327,7 +801332,7 @@ var broadcastTron = async (trxTransaction) => {
|
|
|
801327
801332
|
if (result2.code === "TRANSACTION_EXPIRATION_ERROR") {
|
|
801328
801333
|
throw new TronTransactionExpired();
|
|
801329
801334
|
} else {
|
|
801330
|
-
throw new Error(result2.message);
|
|
801335
|
+
throw new Error(`${result2.code}: ${result2.message}`);
|
|
801331
801336
|
}
|
|
801332
801337
|
}
|
|
801333
801338
|
return result2.txid;
|