Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
avery committed Nov 22, 2024
1 parent 6583fef commit bdbc576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/coinswap/migrations/v3/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type (
}

Params struct {
Fee sdkmath.LegacyDec `protobuf:"bytes,1,opt,name=fee,proto3,customtype=comsmossdk.io/math.LegacyDec" json:"fee"`
Fee sdkmath.LegacyDec `protobuf:"bytes,1,opt,name=fee,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"fee"`
}
)

Expand Down
4 changes: 2 additions & 2 deletions modules/coinswap/migrations/v4/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ type (
}

Params struct {
Fee math.LegacyDec `protobuf:"bytes,1,opt,name=fee,proto3,customtype=comsmossdk.io/math.LegacyDec" json:"fee"`
Fee math.LegacyDec `protobuf:"bytes,1,opt,name=fee,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"fee"`
PoolCreationFee sdk.Coin `protobuf:"bytes,2,opt,name=pool_creation_fee,json=poolCreationFee,proto3" json:"pool_creation_fee"`
TaxRate math.LegacyDec `protobuf:"bytes,3,opt,name=tax_rate,json=taxRate,proto3,customtype=comsmossdk.io/math.LegacyDec" json:"tax_rate"`
TaxRate math.LegacyDec `protobuf:"bytes,3,opt,name=tax_rate,json=taxRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"tax_rate"`
}
)

Expand Down

0 comments on commit bdbc576

Please sign in to comment.