amt push fix
This commit is contained in:
parent
f61efa191f
commit
00a7029514
1 changed files with 1 additions and 1 deletions
|
|
@ -1189,7 +1189,7 @@ module.exports = async (
|
||||||
const openChannelRequest = {
|
const openChannelRequest = {
|
||||||
node_pubkey: Buffer.from(pubkey, 'hex'),
|
node_pubkey: Buffer.from(pubkey, 'hex'),
|
||||||
local_funding_amount: channelCapacity,
|
local_funding_amount: channelCapacity,
|
||||||
push_sat: channelPushAmount,
|
push_sat: channelPushAmount === '' ? '0' : channelPushAmount,
|
||||||
sat_per_byte:satPerByte,
|
sat_per_byte:satPerByte,
|
||||||
};
|
};
|
||||||
logger.info("OpenChannelRequest", openChannelRequest);
|
logger.info("OpenChannelRequest", openChannelRequest);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue