Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(wallet): use correct payload for connectPeer
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Nov 6, 2020
1 parent e1c41da commit 1b64157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/grpc/lightning.methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async function ensurePeerConnected(payload = {}) {
}
const finalPayload = { addr: payload }
logGrpcCmd('Lightning.connectPeer', finalPayload)
return this.connectPeer({ addr: finalPayload })
return this.connectPeer(finalPayload)
}

/**
Expand Down

0 comments on commit 1b64157

Please sign in to comment.