mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 15:11:09 +02:00
lnwallet+lnrpc: add address index to ListAddresses
For the itest in the next commit we'll need to be able to fetch the input information for an address over RPC. The only piece missing is the address' index, which we add in this commit. Everything else should be derivable from the ListAddresses and ListAccounts calls.
This commit is contained in:
@@ -517,6 +517,13 @@ message AddressProperty {
|
||||
|
||||
// The balance of the address.
|
||||
int64 balance = 3;
|
||||
|
||||
// The full derivation path of the address. This will be empty for imported
|
||||
// addresses.
|
||||
string derivation_path = 4;
|
||||
|
||||
// The public key of the address. This will be empty for imported addresses.
|
||||
bytes public_key = 5;
|
||||
}
|
||||
|
||||
message AccountWithAddresses {
|
||||
|
Reference in New Issue
Block a user