Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
jayz22 committed Apr 3, 2024
1 parent f21f026 commit 3f7370f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion soroban-env-host/src/test/budget_metering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ fn total_amount_charged_from_random_inputs() -> Result<(), HostError> {
(1, None), /* Sec1DecodePointUncompressed*/
(1, None), /* VerifyEcdsaSecp256r1Sig */
];
println!("{}", tracker.len());

for (ty, &(iterations, input)) in tracker.iter().enumerate() {
host.with_budget(|b| b.bulk_charge(ContractCostType::VARIANTS[ty], iterations, input))?;
Expand Down
1 change: 0 additions & 1 deletion soroban-env-host/src/testutils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,6 @@ pub(crate) mod wasm {
let mut fe = me.func(Arity(0), 0);
fe.push(Symbol::try_from_small_str("pass").unwrap());
let (mut me, fid) = fe.finish();
println!("{}", fid.0);
// exporting a function I defined is okay
me.export_func(fid, "test");
// exporting an imported function is also okay, although weird
Expand Down

0 comments on commit 3f7370f

Please sign in to comment.