@@ -33,7 +33,7 @@ use miden_client::testing::common::{
3333 execute_tx_and_sync,
3434 insert_new_wallet,
3535} ;
36- use miden_client:: transaction:: { OutputNote , TransactionRequestBuilder } ;
36+ use miden_client:: transaction:: { RawOutputNote , TransactionRequestBuilder } ;
3737use miden_client:: utils:: Serializable ;
3838use miden_client:: { self , Client , DebugMode , Felt } ;
3939use miden_client_cli:: MIDEN_DIR ;
@@ -714,7 +714,7 @@ async fn debug_mode_outputs_logs() -> Result<()> {
714714 // Send transaction and wait for it to be committed
715715 client. sync_state ( ) . await ?;
716716 let transaction_request = TransactionRequestBuilder :: new ( )
717- . own_output_notes ( vec ! [ OutputNote :: Full ( note. clone( ) ) ] )
717+ . own_output_notes ( vec ! [ RawOutputNote :: Full ( note. clone( ) ) ] )
718718 . build ( ) ?;
719719 execute_tx_and_sync ( & mut client, account. id ( ) , transaction_request) . await ?;
720720
@@ -906,7 +906,7 @@ async fn new_wallet_with_deploy_flag() -> Result<()> {
906906 // Verify that the nonce is non-zero (account was deployed)
907907 // By convention, a nonce of 0 indicates an undeployed account
908908 assert ! (
909- nonce. as_int ( ) > 0 ,
909+ nonce. as_canonical_u64 ( ) > 0 ,
910910 "Account nonce should be non-zero after deployment, but got: {nonce}"
911911 ) ;
912912
@@ -1320,7 +1320,7 @@ fn create_account_with_acl_auth() {
13201320 // Create init storage data file for acl-auth with a test public key
13211321 let init_storage_data_toml = r#"
13221322 "miden::standards::auth::singlesig_acl::pub_key" = "0x0000000000000000000000000000000000000000000000000000000000000001"
1323- "miden::standards::auth::singlesig_acl::scheme" = "Falcon512Rpo "
1323+ "miden::standards::auth::singlesig_acl::scheme" = "Falcon512Poseidon2 "
13241324 "miden::standards::auth::singlesig_acl::config.num_tracked_procs" = "1"
13251325 "miden::standards::auth::singlesig_acl::config.allow_unauthorized_output_notes" = "0"
13261326 "miden::standards::auth::singlesig_acl::config.allow_unauthorized_input_notes" = "0"
0 commit comments