Add Kotlin API docs for isMine method

This commit is contained in:
thunderbiscuit 2023-05-03 14:21:37 -04:00
parent b382511a9e
commit 17323d3184
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -489,6 +489,9 @@ class Wallet(
*/
fun getInternalAddress(addressIndex: AddressIndex): AddressInfo {}
/** Return whether or not a script is part of this wallet (either internal or external). */
fun isMine(script: Script): Boolean {}
/** Return the wallet's balance, across different categories. See [Balance] for the categories. Note that this method only operates on the internal database, which first needs to be [Wallet.sync] manually. */
fun getBalance(): Balance {}