-
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
chore(x/feegrant): use cosmossdk.io/core/codec
instead of github.com/cosmos/cosmos-sdk/codec
#23297
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,9 +4,9 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||||||
"bytes" | ||||||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
"cosmossdk.io/core/codec" | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix import ordering using gci. The imports need to be reordered according to the project's guidelines using gci with the following configuration:
|
||||||||||||||||||||||||||||||||||||||||||||||||
"cosmossdk.io/x/feegrant" | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/types/kv" | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -17,8 +17,12 @@ func NewDecodeStore(cdc codec.Codec) func(kvA, kvB kv.Pair) string { | |||||||||||||||||||||||||||||||||||||||||||||||
switch { | ||||||||||||||||||||||||||||||||||||||||||||||||
case bytes.Equal(kvA.Key[:1], feegrant.FeeAllowanceKeyPrefix): | ||||||||||||||||||||||||||||||||||||||||||||||||
var grantA, grantB feegrant.Grant | ||||||||||||||||||||||||||||||||||||||||||||||||
cdc.MustUnmarshal(kvA.Value, &grantA) | ||||||||||||||||||||||||||||||||||||||||||||||||
cdc.MustUnmarshal(kvB.Value, &grantB) | ||||||||||||||||||||||||||||||||||||||||||||||||
if err := cdc.Unmarshal(kvA.Value, &grantA); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||
panic(err) | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
if err := cdc.Unmarshal(kvB.Value, &grantB); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||
panic(err) | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+20
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Consider using error propagation instead of panic. While the error handling is more explicit now, using -func NewDecodeStore(cdc codec.Codec) func(kvA, kvB kv.Pair) string {
+func NewDecodeStore(cdc codec.Codec) func(kvA, kvB kv.Pair) (string, error) {
- return func(kvA, kvB kv.Pair) string {
+ return func(kvA, kvB kv.Pair) (string, error) {
switch {
case bytes.Equal(kvA.Key[:1], feegrant.FeeAllowanceKeyPrefix):
var grantA, grantB feegrant.Grant
if err := cdc.Unmarshal(kvA.Value, &grantA); err != nil {
- panic(err)
+ return "", fmt.Errorf("failed to unmarshal grant A: %w", err)
}
if err := cdc.Unmarshal(kvB.Value, &grantB); err != nil {
- panic(err)
+ return "", fmt.Errorf("failed to unmarshal grant B: %w", err)
}
- return fmt.Sprintf("%v\n%v", grantA, grantB)
+ return fmt.Sprintf("%v\n%v", grantA, grantB), nil
default:
- panic(fmt.Sprintf("invalid feegrant key %X", kvA.Key))
+ return "", fmt.Errorf("invalid feegrant key %X", kvA.Key)
}
}
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Sprintf("%v\n%v", grantA, grantB) | ||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||
panic(fmt.Sprintf("invalid feegrant key %X", kvA.Key)) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
🛠️ Refactor suggestion
Consider using error propagation instead of panic.
While the error handling is more explicit now, using
panic
in production code is generally discouraged. Consider propagating the error up the call stack by updating the interface to return an error.