Skip to content

Commit

Permalink
add rpc method to lnd.swift
Browse files Browse the repository at this point in the history
Signed-off-by: Nitesh Balusu <[email protected]>
  • Loading branch information
niteshbalusu11 committed Dec 8, 2023
1 parent f22d035 commit 5d30a8d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions ios/LndMobile/Lnd.swift
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ open class Lnd {
"NewAddress": { bytes, cb in LndmobileNewAddress(bytes, cb) },
"SendCoins": { bytes, cb in LndmobileSendCoins(bytes, cb) },
"WalletBalance": { bytes, cb in LndmobileWalletBalance(bytes, cb) },
"BumpFee": { bytes, cb in LndmobileWalletKitBumpFee(bytes, cb) },

// wallet
"GenSeed": { bytes, cb in LndmobileGenSeed(bytes, cb) },
Expand Down
1 change: 0 additions & 1 deletion src/lndmobile/onchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ export const bumpFee = async (
txid: string,
index: number,
): Promise<walletrpc.BumpFeeResponse> => {
console.log("inside");
const response = await sendCommand<
walletrpc.BumpFeeRequest,
walletrpc.IBumpFeeRequest,
Expand Down

0 comments on commit 5d30a8d

Please sign in to comment.