diff --git a/Cargo.lock b/Cargo.lock index 617f06f5a..e52728e62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1479,7 +1479,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-targets 0.52.4", + "windows-targets 0.48.5", ] [[package]] @@ -1744,7 +1744,7 @@ dependencies = [ [[package]] name = "miden-lib" version = "0.2.0" -source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#d6af2ae8ce3da19e9dcd66ce3ad81a724a8d8a7a" +source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#61b0bf91576f932d92ffb1dd30a4450e37b3db0b" dependencies = [ "miden-assembly 0.9.1", "miden-objects 0.2.0", @@ -1754,7 +1754,7 @@ dependencies = [ [[package]] name = "miden-mock" version = "0.2.0" -source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#d6af2ae8ce3da19e9dcd66ce3ad81a724a8d8a7a" +source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#61b0bf91576f932d92ffb1dd30a4450e37b3db0b" dependencies = [ "env_logger", "hex", @@ -1981,7 +1981,7 @@ dependencies = [ [[package]] name = "miden-objects" version = "0.2.0" -source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#d6af2ae8ce3da19e9dcd66ce3ad81a724a8d8a7a" +source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#61b0bf91576f932d92ffb1dd30a4450e37b3db0b" dependencies = [ "log", "miden-assembly 0.9.1", @@ -2075,7 +2075,7 @@ dependencies = [ [[package]] name = "miden-tx" version = "0.2.0" -source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#d6af2ae8ce3da19e9dcd66ce3ad81a724a8d8a7a" +source = "git+https://github.com/0xPolygonMiden/miden-base.git?branch=next#61b0bf91576f932d92ffb1dd30a4450e37b3db0b" dependencies = [ "miden-lib 0.2.0", "miden-objects 0.2.0", diff --git a/store/src/db/tests.rs b/store/src/db/tests.rs index e54a6295b..0a4801d1a 100644 --- a/store/src/db/tests.rs +++ b/store/src/db/tests.rs @@ -172,8 +172,8 @@ fn test_sql_select_accounts() { // test multiple entries let mut state = vec![]; for i in 0..10_u64 { - let account_id = - AccountId::new_dummy(rand_array(), AccountType::RegularAccountImmutableCode); + let init_seed = rand_array(); + let account_id = AccountId::new_dummy(init_seed, AccountType::RegularAccountImmutableCode); let account_hash = num_to_rpo_digest(i); state.push(AccountInfo { account_id: account_id.into(),