diff --git a/Cargo.toml b/Cargo.toml index 8d5f39d..2937f41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-reserves" -version = "3.0.0" +version = "3.1.0" authors = ["Richard Ulrich "] edition = "2024" description = "Proof of reserves for bitcoin dev kit" @@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk-reserves" [dependencies] -bdk_wallet = { version = "3.0", default-features = false, features = ["std"] } -bitcoinconsensus = "0.105" +bdk_wallet = { version = "3.1", default-features = false, features = ["std"] } +bitcoinconsensus = "0.106" log = "^0.4" # same version as in rust-bitcoin - I couldn't find a re-export @@ -19,6 +19,6 @@ units = { package = "bitcoin-units", version = "0.1", default-features = false, [dev-dependencies] rstest = "^0.11" -bdk_wallet = { version = "3.0", default-features = true, features = ["test-utils"] } +bdk_wallet = { version = "3.1", default-features = true, features = ["test-utils"] } bdk_electrum = "0.24" -electrsd = { version = "0.39", features = ["download", "bitcoind_download", "bitcoind_29_0", "electrs_0_10_6"] } \ No newline at end of file +electrsd = { version = "0.41", features = ["download", "bitcoind_download", "bitcoind_29_0", "electrs_0_10_6"] } \ No newline at end of file diff --git a/src/reserves.rs b/src/reserves.rs index 2f08846..ba89ce6 100644 --- a/src/reserves.rs +++ b/src/reserves.rs @@ -312,6 +312,7 @@ pub fn verify_proof( txout.script_pubkey.to_bytes().as_slice(), txout.value.to_sat(), &serialized_tx, + None, i, ) .map_err(|e| ProofError::SignatureValidation(i, format!("{:?}", e))),