diff --git a/backend/sensei/nodes.js b/backend/sensei/nodes.js index 4414a9f..3642951 100644 --- a/backend/sensei/nodes.js +++ b/backend/sensei/nodes.js @@ -87,7 +87,7 @@ const payInvoice = async (invoice) => { return await res.json(); } -const keysend = async (destPubkey, amtMsat) => { +const keySend = async (destPubkey, amtMsat) => { const res = await fetch(`${BASE_URL}/v1/node/keysend`, { method: 'POST', @@ -102,3 +102,7 @@ const keysend = async (destPubkey, amtMsat) => { } ); } + +module.exports = { + getBalance +} \ No newline at end of file