diff --git a/src/bitcoin/d/mod.rs b/src/bitcoin/d/mod.rs index c3db160e..4de7a4bb 100644 --- a/src/bitcoin/d/mod.rs +++ b/src/bitcoin/d/mod.rs @@ -528,7 +528,13 @@ impl BitcoinD { pub fn list_since_block(&self, block_hash: &bitcoin::BlockHash) -> LSBlockRes { self.make_wallet_request( "listsinceblock", - ¶ms!(Json::String(block_hash.to_string()),), + ¶ms!( + Json::String(block_hash.to_string()), + Json::Number(1.into()), // Default for min_confirmations for the returned + Json::Bool(true), // Whether to include watchonly + Json::Bool(false), // Whether to include an array of txs that were removed in reorgs + Json::Bool(true) // Whether to include UTxOs treated as change. + ), ) .into() }