Skip to content

Commit

Permalink
fix: add missing override for injective simulate client
Browse files Browse the repository at this point in the history
  • Loading branch information
afsardo committed Aug 6, 2024
1 parent b8224fb commit fdc4d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/internals/cosmos/SimulateClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class SimulateClient {
Math.round(
(txClientSimulateResponse.gasInfo?.gasUsed || 0) * (overrides?.gasAdjustment ?? DEFAULT_GAS_MULTIPLIER),
),
network.gasPrice || "0.0005inj",
overrides?.gasPrice ?? network.gasPrice ?? "0.0005inj",
) as Fee;

return {
Expand Down

0 comments on commit fdc4d4b

Please sign in to comment.