Browse Source

fee_limit

dependabot/npm_and_yarn/ini-1.3.7
Evan Feenstra 4 years ago
parent
commit
9f2197a46e
  1. 1
      dist/src/utils/lightning.js
  2. 2
      dist/src/utils/lightning.js.map
  3. 1
      src/utils/lightning.ts

1
dist/src/utils/lightning.js

@ -144,6 +144,7 @@ const keysend = (opts) => {
},
payment_hash: sha.sha256.arrayBuffer(preimage.toBuffer()),
dest_features: [9],
fee_limit: { fixed: 10 }
};
const call = lightning.sendPayment();
call.on('data', function (payment) {

2
dist/src/utils/lightning.js.map

File diff suppressed because one or more lines are too long

1
src/utils/lightning.ts

@ -134,6 +134,7 @@ const keysend = (opts) => {
},
payment_hash: sha.sha256.arrayBuffer(preimage.toBuffer()),
dest_features:[9],
fee_limit: {fixed:10}
}
const call = lightning.sendPayment()
call.on('data', function(payment) {

Loading…
Cancel
Save