diff --git a/zcash_client_sqlite/src/wallet.rs b/zcash_client_sqlite/src/wallet.rs index bcc1d4f9f2..c6d58c6228 100644 --- a/zcash_client_sqlite/src/wallet.rs +++ b/zcash_client_sqlite/src/wallet.rs @@ -840,6 +840,7 @@ pub(crate) fn get_transaction( tx_data.sprout_bundle().cloned(), tx_data.sapling_bundle().cloned(), tx_data.orchard_bundle().cloned(), + tx_data.issue_bundle().cloned(), ) .freeze() .map(|t| (expiry_height, t)) diff --git a/zcash_client_sqlite/src/wallet/init.rs b/zcash_client_sqlite/src/wallet/init.rs index 18c27f303e..33e811ce17 100644 --- a/zcash_client_sqlite/src/wallet/init.rs +++ b/zcash_client_sqlite/src/wallet/init.rs @@ -841,6 +841,7 @@ mod tests { None, None, None, + None, ) .freeze() .unwrap(); diff --git a/zcash_client_sqlite/src/wallet/init/migrations/add_transaction_views.rs b/zcash_client_sqlite/src/wallet/init/migrations/add_transaction_views.rs index 05ab54aed5..7e8ebd0a93 100644 --- a/zcash_client_sqlite/src/wallet/init/migrations/add_transaction_views.rs +++ b/zcash_client_sqlite/src/wallet/init/migrations/add_transaction_views.rs @@ -432,6 +432,7 @@ mod tests { None, None, None, + None, ) .freeze() .unwrap(); diff --git a/zcash_extensions/src/transparent/demo.rs b/zcash_extensions/src/transparent/demo.rs index b5cd5e0be0..593b9cbb50 100644 --- a/zcash_extensions/src/transparent/demo.rs +++ b/zcash_extensions/src/transparent/demo.rs @@ -513,6 +513,7 @@ mod tests { NetworkUpgrade::Heartwood => Some(BlockHeight::from_u32(903_800)), NetworkUpgrade::Canopy => Some(BlockHeight::from_u32(1_028_500)), NetworkUpgrade::Nu5 => Some(BlockHeight::from_u32(1_200_000)), + NetworkUpgrade::V6 => Some(BlockHeight::from_u32(1_200_000)), NetworkUpgrade::ZFuture => Some(BlockHeight::from_u32(1_400_000)), } } @@ -693,6 +694,7 @@ mod tests { None, None, None, + None, Some(Bundle { vin: vec![], vout: vec![out_a], @@ -724,6 +726,7 @@ mod tests { None, None, None, + None, Some(Bundle { vin: vec![in_b], vout: vec![out_b], @@ -751,6 +754,7 @@ mod tests { None, None, None, + None, Some(Bundle { vin: vec![in_c], vout: vec![],