use correct tokens per vbyte argument

This commit is contained in:
Alex Bosworth 2024-12-31 18:20:14 -08:00
parent 6c105bceee
commit 4b12d4263d
No known key found for this signature in database
GPG key ID: E80D2F3F311FD87E
4 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# Versions
## 19.4.5
## 19.4.6
- Add support for LND 0.18.4

View file

@ -114,7 +114,7 @@ module.exports = (args, cbk) => {
return openChannel({
description: `Sold channel open for invoice ${args.invoice_id}`,
fee_rate: args.chain_fee,
chain_fee_tokens_per_vbyte: args.chain_fee,
is_private: !order.result.announce_channel,
lnd: args.lnd,
local_tokens: order.result.lsp_balance_sat,

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "balanceofsatoshis",
"version": "19.4.5",
"version": "19.4.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "balanceofsatoshis",
"version": "19.4.5",
"version": "19.4.6",
"license": "MIT",
"dependencies": {
"@alexbosworth/blockchain": "2.0.0",

View file

@ -83,5 +83,5 @@
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
"test": "npx nyc@17.0.0 node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
},
"version": "19.4.5"
"version": "19.4.6"
}