-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add additional checks for unit tests
- Loading branch information
Showing
4 changed files
with
52 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
package common | ||
|
||
import ( | ||
sdkmath "cosmossdk.io/math" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
const ( | ||
// EVMSend is the gas limit required to transfer tokens on an EVM based chain | ||
EVMSend = 21000 | ||
// TODO: Move gas limits from zeta-client to this file | ||
// https://github.com/zeta-chain/node/issues/1606 | ||
) | ||
|
||
// MultiplyGasPrice multiplies the median gas price by the given multiplier and returns the truncated value | ||
func MultiplyGasPrice(medianGasPrice sdkmath.Uint, multiplierString string) (sdkmath.Uint, error) { | ||
multiplier, err := sdk.NewDecFromStr(multiplierString) | ||
if err != nil { | ||
return sdkmath.ZeroUint(), err | ||
} | ||
gasPrice, err := sdk.NewDecFromStr(medianGasPrice.String()) | ||
if err != nil { | ||
return sdkmath.ZeroUint(), err | ||
} | ||
return sdkmath.NewUintFromString(gasPrice.Mul(multiplier).TruncateInt().String()), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error needs to be handled here