Change error messaging

This commit is contained in:
Rene Vergara 2024-05-02 14:07:54 -05:00
parent 31c5cda65a
commit 6a632d45c1
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
1 changed files with 1 additions and 1 deletions

View File

@ -1831,7 +1831,7 @@ pub extern "C" fn rust_wrapper_create_transaction(
marshall_to_haskell_var(&x, out, out_len, RW);
},
Error::ChangeRequired(y1) => {
println!("Change required {:#?}", y1);
println!("Change required {:?}", y1);
let x = Hhex {bytes: vec![1]};
marshall_to_haskell_var(&x, out, out_len, RW);
},