Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove printlns
Browse files Browse the repository at this point in the history
joe-p committed Jan 29, 2025
1 parent e29877d commit 989e746
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ledger/simulation/resources.go
Original file line number Diff line number Diff line change
@@ -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) {

0 comments on commit 989e746

Please sign in to comment.