Add include_raw boolean parameter on wallet list_transactions method

This commit is contained in:
thunderbiscuit
2023-03-23 12:32:54 -04:00
parent 2342265c26
commit 3dc6596aa2
3 changed files with 12 additions and 24 deletions

View File

@@ -491,7 +491,7 @@ class Wallet(
fun sign(psbt: PartiallySignedTransaction): Boolean {}
/** Return the list of transactions made and received by the wallet. Note that this method only operate on the internal database, which first needs to be [Wallet.sync] manually. */
fun listTransactions(): List<TransactionDetails> {}
fun listTransactions(includeRaw: Boolean): List<TransactionDetails> {}
/** Get the Bitcoin network the wallet is using. */
fun network(): Network {}