-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Fix AfterImport and update black/white list variable namings #7159
Conversation
Codecov Report
@@ Coverage Diff @@
## master #7159 +/- ##
==========================================
- Coverage 58.14% 54.53% -3.62%
==========================================
Files 412 566 +154
Lines 28281 38728 +10447
==========================================
+ Hits 16445 21120 +4675
- Misses 10525 15884 +5359
- Partials 1311 1724 +413 |
@@ -255,10 +255,10 @@ func TestAppSimulationAfterImport(t *testing.T) { | |||
_, _, err = simulation.SimulateFromSeed( | |||
t, | |||
os.Stdout, | |||
app.BaseApp, | |||
newApp.BaseApp, |
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.
ahh copy paste. Sorry about that
server/export.go
Outdated
flagHeight = "height" | ||
flagForZeroHeight = "for-zero-height" | ||
flagJailAllowedAddrs = "jail-allowed-addrs" |
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.
actually, can we make these flags public?
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.
I'm not sure what that means. feel free to push to this branch
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.
flag...
-> Flag...
…7159) * fix sim bug and rename remaining references of black/white list * make server export command flags public * make missed flag public Co-authored-by: Federico Kunze <[email protected]>
Description
Should fix
AfterImport
sim.newApp
had gotten changed toapp
in #7135. While looking at the diffs I realized I missed some black/white list naming references so I thought it'd be fine to update those in this pr as well.The failing seed passed for me locally but we should wait for the full sim to run
closes: #XXXX
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerCodecov Report
in the comment section below once CI passes