From 181cb87c1810701f06607156c1493095ba5d3931 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Tue, 21 Jan 2025 00:25:47 +0100 Subject: [PATCH] Remove warning if wallet does not support msats --- wallets/server.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/wallets/server.js b/wallets/server.js index f14e9fb3..bcf1078c 100644 --- a/wallets/server.js +++ b/wallets/server.js @@ -66,8 +66,6 @@ export async function createInvoice (userId, { msats, description, descriptionHa if (BigInt(msats) - BigInt(bolt11.mtokens) >= 1000n) { throw new Error('invoice invalid: amount too small') } - - logger.warn('wallet does not support msats') } return { invoice, wallet, logger }