Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Brookman authored and Jordan Brookman committed May 7, 2022
1 parent e69de52 commit 9c23e09
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion backend/sensei/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -102,3 +102,7 @@ const keysend = async (destPubkey, amtMsat) => {
}
);
}

module.exports = {
getBalance
}

0 comments on commit 9c23e09

Please sign in to comment.