Remove debugging from Sapling decoder #64

Merged
pitmutt merged 2 commits from rav001 into dev040 2024-04-16 20:16:47 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit cb985d26cd - Show all commits

View File

@ -766,19 +766,19 @@ pub extern "C" fn rust_wrapper_sapling_esk_decrypt(
marshall_to_haskell_var(&hn, out, out_len, RW);
},
None => {
let hn0 = Hnote { note: 0, recipient: vec![0], memo: vec![0], nullifier: vec![0]};
let hn0 = Hnote { note: 1000, recipient: vec![0], memo: vec![0], nullifier: vec![0]};
marshall_to_haskell_var(&hn0, out, out_len, RW);
}
}
},
Err(_e1) => {
let hn0 = Hnote { note: 0, recipient: vec![0], memo: vec![0], nullifier: vec![0] };
let hn0 = Hnote { note: 2000, recipient: vec![0], memo: vec![0], nullifier: vec![0] };
marshall_to_haskell_var(&hn0, out, out_len, RW);
}
}
},
Err(_e) => {
let hn0 = Hnote { note: 0, recipient: vec![0], memo: vec![0], nullifier: vec![0] };
let hn0 = Hnote { note: 3000, recipient: vec![0], memo: vec![0], nullifier: vec![0] };
marshall_to_haskell_var(&hn0, out, out_len, RW);
}
}