File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
modules/abstract-lightning/src/codecs/api Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ export const ChannelBalance = t.strict(
2727 pendingOpenLocalBalance : LndAmount ,
2828 /** Sum of local remote balances. */
2929 pendingOpenRemoteBalance : LndAmount ,
30+ /** Total local reserved balance. */
31+ reservedLocalBalance : LndAmount ,
32+ /** Total local spendable balance. */
33+ spendableLocalBalance : LndAmount ,
3034 } ,
3135 'ChannelBalance'
3236) ;
@@ -73,6 +77,8 @@ export const LndGetOffchainBalances = t.strict(
7377 outboundPendingBalance : BigIntFromString ,
7478 outboundUnsettledBalance : BigIntFromString ,
7579 outboundLockedBalance : BigIntFromString ,
80+ outboundReservedBalance : BigIntFromString ,
81+ outboundSpendableBalance : BigIntFromString ,
7682 inboundBalance : BigIntFromString ,
7783 inboundPendingBalance : BigIntFromString ,
7884 inboundUnsettledBalance : BigIntFromString ,
You can’t perform that action at this time.
0 commit comments