-
Notifications
You must be signed in to change notification settings - Fork 323
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: switch from cosmos-sdk/network to testnode package #3118
Conversation
…rg/celestia-app into cal/refactor-integration-tests
WalkthroughWalkthroughThe recent updates focus on enhancing network testing by introducing a more unified and efficient approach, notably through the adoption of a new Changes
Assessment against linked issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
LGTM! Thanks for the clean up
x/mint/types/constants.go
Outdated
func InitialInflationRateAsLegacyDec() math.LegacyDec { | ||
return initialInflationRateAsLegacyDec | ||
} | ||
|
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.
appears unused so proposal to delete
func InitialInflationRateAsLegacyDec() math.LegacyDec { | |
return initialInflationRateAsLegacyDec | |
} |
x/mint/types/constants.go
Outdated
@@ -28,12 +31,18 @@ var ( | |||
initialInflationRateAsDec = sdk.NewDecWithPrec(InitialInflationRate*1000, 3) | |||
disinflationRateAsDec = sdk.NewDecWithPrec(DisinflationRate*1000, 3) | |||
targetInflationRateAsDec = sdk.NewDecWithPrec(TargetInflationRate*1000, 3) | |||
|
|||
initialInflationRateAsLegacyDec = math.LegacyNewDecWithPrec(InitialInflationRate*1000, 3) |
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.
appears unused so proposal to delete
initialInflationRateAsLegacyDec = math.LegacyNewDecWithPrec(InitialInflationRate*1000, 3) |
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.
Yeah I was going to
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.
Looks good!
Co-authored-by: Rootul P <[email protected]>
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.
nice! thanks for doing this!
…g#3118) Closes: celestiaorg#829 This refactors the three tests we have that use the CLI commands: `mint`, `blob` and `blobstream` to use the `testnode` package instead of `cosmos-sdk`'s `network` package. The motivating reason for this is that cosmos-sdk's network package doesn't support initialising the `ConsensusParams` in the genesis file which we need to set the app version correctly --------- Co-authored-by: Rootul P <[email protected]>
Closes: #829
This refactors the three tests we have that use the CLI commands:
mint
,blob
andblobstream
to use thetestnode
package instead ofcosmos-sdk
'snetwork
package.The motivating reason for this is that cosmos-sdk's network package doesn't support initialising the
ConsensusParams
in the genesis file which we need to set the app version correctly