diff --git a/libs/ledger-live-common/src/bot/cli.ts b/libs/ledger-live-common/src/bot/cli.ts index 9b10618be248..a6c3299a0f63 100644 --- a/libs/ledger-live-common/src/bot/cli.ts +++ b/libs/ledger-live-common/src/bot/cli.ts @@ -18,6 +18,8 @@ const arg: Partial<{ arg.filter = {}; arg.disabled = {}; +console.log(BOT_FILTER_CURRENCIES); + if (BOT_FILTER_CURRENCIES) { arg.filter.currencies = BOT_FILTER_CURRENCIES.split(","); } diff --git a/libs/ledger-live-common/src/bot/index.ts b/libs/ledger-live-common/src/bot/index.ts index 94bfda48a8b0..c3c2fe26fc00 100644 --- a/libs/ledger-live-common/src/bot/index.ts +++ b/libs/ledger-live-common/src/bot/index.ts @@ -166,6 +166,12 @@ export async function bot({ disabled, filter }: Arg = {}): Promise { const specsLogs: string[][] = []; const specs = getSpecs({ disabled, filter }); + console.log("specsLength", specs.length); + console.log( + "specs", + specs.map(spec => spec.name), + ); + const timeBefore = Date.now(); const results: Array> = await promiseAllBatched( getEnv("BOT_MAX_CONCURRENT"), diff --git a/libs/ledger-live-common/src/families/vechain/speculos-deviceActions.ts b/libs/ledger-live-common/src/families/vechain/speculos-deviceActions.ts index 0ac83da7f14d..6edac20389e2 100644 --- a/libs/ledger-live-common/src/families/vechain/speculos-deviceActions.ts +++ b/libs/ledger-live-common/src/families/vechain/speculos-deviceActions.ts @@ -13,7 +13,7 @@ const acceptTransaction: DeviceAction = deviceActionFlow({ button: SpeculosButton.RIGHT, }, { title: "Address", button: SpeculosButton.RIGHT }, - { title: "MaxFee", button: SpeculosButton.RIGHT }, + { title: "Max Fees", button: SpeculosButton.RIGHT }, { title: "Accept", button: SpeculosButton.BOTH,