Skip to content

Commit

Permalink
chore: remove leftover debugging printlns (#1550)
Browse files Browse the repository at this point in the history
🤷
  • Loading branch information
thehowl authored Jan 17, 2024
1 parent b2046c5 commit 851a1ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions gnovm/pkg/gnolang/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -1797,8 +1797,6 @@ func (sb *StaticBlock) Define2(isConst bool, n Name, st Type, tv TypedValue) {
// special case,
// allow re-predefining for func upgrades.
// keep the old type so we can check it at preprocessor.
// fmt.Println("QWEQWEQWE>>>", old.String())
// fmt.Println("QWEQWEQWE>>>", tv.String())
tv.T = old.T
fv := tv.V.(*FuncValue)
fv.Type = old.T
Expand Down
2 changes: 0 additions & 2 deletions gnovm/stdlibs/std/native.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package std

import (
"fmt"
"reflect"

gno "github.com/gnolang/gno/gnovm/pkg/gnolang"
Expand Down Expand Up @@ -112,7 +111,6 @@ func GetOrigPkgAddr(m *gno.Machine) crypto.Bech32Address {

func GetCallerAt(m *gno.Machine, n int) crypto.Bech32Address {
if n <= 0 {
fmt.Println("QWEQWEQWEQWE", n)
m.Panic(typedString("GetCallerAt requires positive arg"))
return ""
}
Expand Down

0 comments on commit 851a1ae

Please sign in to comment.