diff --git a/Cargo.lock b/Cargo.lock index 28e3daf..f9fd600 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1123,7 +1123,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "rgb-invoice" version = "0.11.0-beta.6" -source = "git+https://github.com/RGB-WG/rgb-std?branch=master#48bb105d8b99d2c88dfbb574cee9ecb2021c439b" +source = "git+https://github.com/RGB-WG/rgb-std?branch=txid#f584d104a2672f546135ede6ddea15607b33e479" dependencies = [ "amplify", "baid64", @@ -1465,7 +1465,7 @@ dependencies = [ [[package]] name = "rgb-std" version = "0.11.0-beta.6" -source = "git+https://github.com/RGB-WG/rgb-std?branch=master#48bb105d8b99d2c88dfbb574cee9ecb2021c439b" +source = "git+https://github.com/RGB-WG/rgb-std?branch=txid#f584d104a2672f546135ede6ddea15607b33e479" dependencies = [ "aluvm", "amplify", diff --git a/Cargo.toml b/Cargo.toml index 3a39532..5f09024 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,6 +103,6 @@ psbt = { git = "https://github.com/BP-WG/bp-std", branch = "master" } bp-std = { git = "https://github.com/BP-WG/bp-std", branch = "master" } bp-wallet = { git = "https://github.com/BP-WG/bp-wallet", branch = "master" } rgb-core = { git = "https://github.com/RGB-WG/rgb-core", branch = "master" } -rgb-invoice = { git = "https://github.com/RGB-WG/rgb-std", branch = "master" } -rgb-std = { git = "https://github.com/RGB-WG/rgb-std", branch = "master" } +rgb-invoice = { git = "https://github.com/RGB-WG/rgb-std", branch = "txid" } +rgb-std = { git = "https://github.com/RGB-WG/rgb-std", branch = "txid" } rgb-interfaces = { git = "https://github.com/RGB-WG/rgb-interfaces.git", branch = "master" } diff --git a/src/indexers/any.rs b/src/indexers/any.rs index e73eb5c..f20a6bf 100644 --- a/src/indexers/any.rs +++ b/src/indexers/any.rs @@ -96,7 +96,7 @@ impl AnyResolver { consignment .bundles .iter() - .filter_map(|bw| bw.pub_witness.maybe_map_ref(|w| w.tx.clone())) + .filter_map(|bw| bw.pub_witness.maybe_map_ref(|w| w.tx().cloned())) .filter_map(|tx| match tx { XChain::Bitcoin(tx) => Some(tx), XChain::Liquid(_) | XChain::Other(_) => None,