diff --git a/lib/subprotocols/payRequest.js b/lib/subprotocols/payRequest.js index 84cd878..85c4920 100644 --- a/lib/subprotocols/payRequest.js +++ b/lib/subprotocols/payRequest.js @@ -83,7 +83,7 @@ module.exports = { return this.executeHook('payRequest:info', secret, params).then(() => { const { endpoint } = this.options; let info = {}; - ['minSendable', 'maxSendable', 'metadata', 'commentAllowed', 'successAction'].forEach(key => { + ['minSendable', 'maxSendable', 'metadata', 'commentAllowed', 'successAction', 'allowsNostr', 'nostrPubKey'].forEach(key => { if (typeof params[key] !== 'undefined' && params[key] !== null) { info[key] = params[key]; }