From f42a1fb835e9933f3488bee72a754e64e274faf3 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Mon, 20 Nov 2023 11:25:19 +0100 Subject: [PATCH] failed to check -> failed to validate --- commands/station.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/station.js b/commands/station.js index 6e4df807..386f0982 100644 --- a/commands/station.js +++ b/commands/station.js @@ -38,11 +38,11 @@ export const station = async ({ json, experimental }) => { { retries: 1000, onFailedAttempt: () => - console.error('Failed to check FIL_WALLET_ADDRESS address. Retrying...') + console.error('Failed to validate FIL_WALLET_ADDRESS address. Retrying...') } ) if (fetchRes.status === 403) panic('Invalid FIL_WALLET_ADDRESS address') - if (!fetchRes.ok) panic('Failed to check FIL_WALLET_ADDRESS address') + if (!fetchRes.ok) panic('Failed to validate FIL_WALLET_ADDRESS address') const ethAddress = FIL_WALLET_ADDRESS.startsWith('0x') ? FIL_WALLET_ADDRESS : ethAddressFromDelegated(FIL_WALLET_ADDRESS)