We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caaca1f commit ba4c1e0Copy full SHA for ba4c1e0
1 file changed
src/bitcoin/d/mod.rs
@@ -528,7 +528,13 @@ impl BitcoinD {
528
pub fn list_since_block(&self, block_hash: &bitcoin::BlockHash) -> LSBlockRes {
529
self.make_wallet_request(
530
"listsinceblock",
531
- ¶ms!(Json::String(block_hash.to_string()),),
+ ¶ms!(
532
+ Json::String(block_hash.to_string()),
533
+ Json::Number(1.into()), // Default for min_confirmations for the returned
534
+ Json::Bool(true), // Whether to include watchonly
535
+ Json::Bool(false), // Whether to include an array of txs that were removed in reorgs
536
+ Json::Bool(true) // Whether to include UTxOs treated as change.
537
+ ),
538
)
539
.into()
540
}
0 commit comments