Remove debugging

This commit is contained in:
Rene Vergara 2024-05-07 12:13:54 -05:00
parent 22c0fe3749
commit 2108f46afa
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
1 changed files with 9 additions and 10 deletions

View File

@ -1656,7 +1656,7 @@ pub extern "C" fn rust_wrapper_create_transaction(
None
}
};
println!("{:?}", sap_anchor);
//println!("{:?}", sap_anchor);
let orch_wit_in: Vec<u8> = marshall_from_haskell_var(orch_wit, orch_wit_len, RW);
let orch_wit_reader = Cursor::new(orch_wit_in);
let orch_iw = read_commitment_tree::<MerkleHashOrchard, Cursor<Vec<u8>>, 32>(orch_wit_reader);
@ -1678,7 +1678,7 @@ pub extern "C" fn rust_wrapper_create_transaction(
if net {
match main_builder.add_transparent_input(k, t_in.utxo.unpack(), t_in.coin.unpack()) {
Ok(()) => {
println!("added t-input in main");
//println!("added t-input in main");
continue;
},
Err(_e) => { println!("Error reading transparent input"); }
@ -1686,7 +1686,7 @@ pub extern "C" fn rust_wrapper_create_transaction(
} else {
match test_builder.add_transparent_input(k, t_in.utxo.unpack(), t_in.coin.unpack()) {
Ok(()) => {
println!("added t-input in test");
//println!("added t-input in test");
continue;
},
Err(_e) => { println!("Error reading transparent input"); }
@ -1774,13 +1774,12 @@ pub extern "C" fn rust_wrapper_create_transaction(
}
},
4 => {
//let sk = SpendingKey::from_bytes(output.ovk[0..32].try_into().unwrap()).unwrap();
//let ovk = if output.chg {
//Some(FullViewingKey::from(&sk).to_ovk(Scope::Internal))
//} else {
//Some(FullViewingKey::from(&sk).to_ovk(Scope::External))
//};
let ovk = None;
let sk = SpendingKey::from_bytes(output.ovk[0..32].try_into().unwrap()).unwrap();
let ovk = if output.chg {
Some(FullViewingKey::from(&sk).to_ovk(Scope::Internal))
} else {
Some(FullViewingKey::from(&sk).to_ovk(Scope::External))
};
let recipient = OrchardAddress::from_raw_address_bytes(&to_array(output.to)).unwrap();
let val = output.amt;
let memo = MemoBytes::from_bytes(&output.memo).unwrap();