We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dac2df commit b19e272Copy full SHA for b19e272
ironfish-rust/src/transaction/tests.rs
@@ -247,12 +247,10 @@ fn test_evm_transaction() {
247
assert_eq!(transaction.spends.len(), 1);
248
transaction.add_output(out_note).unwrap();
249
assert_eq!(transaction.outputs.len(), 1);
250
- println!("spends before: {:?}", transaction.spends.len());
251
transaction
252
.add_evm(evm)
253
.expect("should be able to add data");
254
255
- println!("spends after: {:?}", transaction.spends.len());
256
let public_transaction = transaction
257
.post(&spender_key, None, 1)
258
.expect("should be able to post transaction");
0 commit comments