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) {