diff --git a/src/cli.ts b/src/cli.ts index 477a175..907db6b 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -1757,7 +1757,7 @@ program " 1) lazyrefund/apikeys - Pseudonymous accounts are kept with the Routstr nodes and are refunded after 5 mins if not used.", ); console.log( - " 2) xcashu (coming soon) - Balances are never kept with the nodes, all balances are refunded in response.", + " 2) xcashu - Balances are never kept with the nodes, all balances are refunded in response.", ); console.log(`\nCurrent mode: ${currentMode}`); @@ -1777,13 +1777,6 @@ program const selectedMode = modes[selectedIndex]; - if (selectedMode === "xcashu") { - console.log( - "\nxcashu mode is coming soon! Only lazyrefund/apikeys is available at this time.", - ); - return; - } - if (selectedMode === currentMode) { console.log(`Mode is already set to '${selectedMode}'. No changes made.`); return;