diff --git a/lnd-rpc/lnd-rpc.sbt b/lnd-rpc/lnd-rpc.sbt index 46e7122b84..806b49830e 100644 --- a/lnd-rpc/lnd-rpc.sbt +++ b/lnd-rpc/lnd-rpc.sbt @@ -35,7 +35,7 @@ TaskKeys.downloadLnd := { Files.createDirectories(binaryDir) } - val version = "0.14.2-beta" + val version = "0.14.3-beta" val (platform, suffix) = if (Properties.isLinux) ("linux-amd64", "tar.gz") @@ -68,11 +68,11 @@ TaskKeys.downloadLnd := { val expectedHash = if (Properties.isLinux) - "7e0f290716e3c246305e176310a9a49aaafc9c243adc829631094a409cfd0ef1" + "272b9a8e745d1a67a5d6fa5fb9c6bad2791ab84996df5ed87ab89f850f9b9bf5" else if (Properties.isMac) - "c9f9bab9209a329407c4ba42b7b177b5e9edcab936e0a6c84593b09369ef43c5" + "f72771e6babbdc630f25c14f3528b922415e4069446f340ef26dc80587eb3fe1" else if (Properties.isWin) - "c0060c000b11f440c5cc1675ec23820a67eae2cca7a881d430b78109d707b543" + "72487fccf8eda9f5d2942b6797c96b25ce3ea9771582ae46a752ec0a0c7f96de" else sys.error(s"Unsupported OS: ${Properties.osName}") if (hash.equalsIgnoreCase(expectedHash)) { diff --git a/lnd-rpc/src/main/protobuf/lightning.proto b/lnd-rpc/src/main/protobuf/lightning.proto index 7dc2312044..ad1f555fc4 100644 --- a/lnd-rpc/src/main/protobuf/lightning.proto +++ b/lnd-rpc/src/main/protobuf/lightning.proto @@ -2520,6 +2520,10 @@ message WalletBalanceResponse { // The unconfirmed balance of a wallet(with 0 confirmations) int64 unconfirmed_balance = 3; + // The total amount of wallet UTXOs held in outputs that are locked for + // other usage. + int64 locked_balance = 5; + // A mapping of each wallet account's name to its balance. map account_balance = 4; } @@ -2735,7 +2739,7 @@ message Hop { TLV format. Note that if any custom tlv_records below are specified, then this field MUST be set to true for them to be encoded properly. */ - bool tlv_payload = 9; + bool tlv_payload = 9 [deprecated = true]; /* An optional TLV record that signals the use of an MPP payment. If present, diff --git a/lnd-rpc/src/main/scala/org/bitcoins/lnd/rpc/LndRpcClient.scala b/lnd-rpc/src/main/scala/org/bitcoins/lnd/rpc/LndRpcClient.scala index d4b69c4280..af05e8b6c9 100644 --- a/lnd-rpc/src/main/scala/org/bitcoins/lnd/rpc/LndRpcClient.scala +++ b/lnd-rpc/src/main/scala/org/bitcoins/lnd/rpc/LndRpcClient.scala @@ -1024,7 +1024,7 @@ object LndRpcClient { hex"8c45ee0b90e3afd0fb4d6f39afa3c5d551ee5f2c7ac2d06820ed3d16582186d2" /** The current version we support of Lnd */ - private[bitcoins] val version = "v0.14.2-beta" + private[bitcoins] val version = "v0.14.3-beta" /** Key used for adding the macaroon to the gRPC header */ private[lnd] val macaroonKey = "macaroon"