-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: tidy misc/loop
mod
#3065
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3065 +/- ##
==========================================
- Coverage 63.33% 63.33% -0.01%
==========================================
Files 548 548
Lines 78599 78601 +2
==========================================
- Hits 49784 49783 -1
- Misses 25461 25462 +1
- Partials 3354 3356 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
before merging this PR, let's fix the CI so that it detects the issue. ideally, fix the CI in this PR :) |
@@ -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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For context on this -- the default scanner limit is ~65k chars, which proved to be too little for even our portal loop transactions, so I bumped the value to ~1M chars
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 🤷♂️It also fixes the failing CI, but downgrading
gnomigrate
to1.22
- fun :)Contributors' checklist...
BREAKING CHANGE: xxx
message was included in the description