From 989e746e5af30faf8d5808a6e31f7a1ace41801a Mon Sep 17 00:00:00 2001 From: Joe Polny Date: Wed, 29 Jan 2025 09:56:45 -0500 Subject: [PATCH] remove printlns --- ledger/simulation/resources.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/ledger/simulation/resources.go b/ledger/simulation/resources.go index 65a56aa104..cf013bdbbd 100644 --- a/ledger/simulation/resources.go +++ b/ledger/simulation/resources.go @@ -774,7 +774,6 @@ func (r *txnResources) addBox(app basics.AppIndex, name string) error { // addBoxWithApp adds a box to the box array. It also adds the app to the app array. func (r *txnResources) addBoxWithApp(app basics.AppIndex, name string) error { - fmt.Println(app) if !r.hasRoomForBoxWithApp() { return fmt.Errorf("no room for box %d : %s", app, name) } @@ -988,8 +987,6 @@ func (p *resourcePopulator) addApp(app basics.AppIndex) error { func (p *resourcePopulator) addBox(app basics.AppIndex, name string) error { var err error - fmt.Println("In addBox:", app) - // First try to find txn with app already available for _, i := range p.appCallIndexes { if app == basics.AppIndex(0) || p.txnResources[i].hasApp(app) {