Skip to content

Commit

Permalink
fix: Ineffectual err assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
red-0ne committed Jan 3, 2025
1 parent c3b2d36 commit f30a570
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/deps/config/suppliers.go
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,9 @@ func NewSupplySupplierClientsFn(signingKeyNames []string) SupplierFn {
}

gasPrices, err := cosmostypes.ParseCoinsNormalized(gasPriceStr)
if err != nil {
return nil, err
}

suppliers := supplier.NewSupplierClientMap()
for _, signingKeyName := range signingKeyNames {
Expand Down

0 comments on commit f30a570

Please sign in to comment.