Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
expertdicer committed Apr 2, 2024
1 parent 652fdc2 commit 5a0d065
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions app/fork_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package app

import (
"fmt"
"testing"
"time"

Expand Down Expand Up @@ -97,7 +96,6 @@ func checkDuplicateUBD(eles []stakingtypes.DVPair) bool {
for _, ele := range eles {

Check failure on line 96 in app/fork_test.go

View workflow job for this annotation

GitHub Actions / lint

`eles` is a misspelling of `eels` (misspell)
unique_eles[ele.String()] = true

Check failure on line 97 in app/fork_test.go

View workflow job for this annotation

GitHub Actions / lint

`eles` is a misspelling of `eels` (misspell)
}
fmt.Println(eles, "eles")

return len(unique_eles) != len(eles)

Check failure on line 100 in app/fork_test.go

View workflow job for this annotation

GitHub Actions / lint

`eles` is a misspelling of `eels` (misspell)
}
Expand Down
2 changes: 0 additions & 2 deletions app/forks.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package app

import (
"fmt"
"sort"
"time"

Expand Down Expand Up @@ -153,7 +152,6 @@ func removeDuplicatesDVPairs(dvPairs []stakingtypes.DVPair) []stakingtypes.DVPai
list = append(list, item)
}
}
fmt.Println(list, "remove dv dup")
return list
}

Expand Down

0 comments on commit 5a0d065

Please sign in to comment.