Skip to content

Commit

Permalink
chore: tidy misc/loop mod (#3065)
Browse files Browse the repository at this point in the history
## Description

This PR tidies the `misc/loop` `go.mod`. I'm not sure how the CI didn't
catch this, or why it's green 🤷‍♂️

<details><summary>Contributors' checklist...</summary>

- [x] Added new tests, or not needed, or not feasible
- [x] Provided an example (e.g. screenshot) to aid review or the PR is
self-explanatory
- [x] Updated the official documentation or not needed
- [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message
was included in the description
- [ ] Added references to related issues and PRs
- [ ] Provided any useful hints for running manual tests
</details>
  • Loading branch information
zivkovicmilos authored Nov 5, 2024
1 parent e3995b9 commit 95df7b0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mod-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: Check go.mod files are up to date
working-directory: ${{ inputs.modulepath }}
run: |
make tidy VERIFY_GO_SUMS=true
make tidy VERIFY_MOD_SUMS=true
2 changes: 1 addition & 1 deletion contribs/gnomigrate/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gnolang/gnomigrate

go 1.23
go 1.22

require (
github.com/gnolang/gno v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 2 additions & 0 deletions gno.land/pkg/gnoland/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ func ReadGenesisTxs(ctx context.Context, path string) ([]TxWithMetadata, error)
scanner = bufio.NewScanner(file)
)

scanner.Buffer(make([]byte, 1_000_000), 2_000_000)

for scanner.Scan() {
select {
case <-ctx.Done():
Expand Down
2 changes: 0 additions & 2 deletions misc/loop/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 95df7b0

Please sign in to comment.