mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
a573625df8
* bump SDK version to v0.38.3 Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: Kevin Davis <kjydavis3@gmail.com> Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com>
27 lines
441 B
Go
27 lines
441 B
Go
package simulation
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
func ShiftDec(x sdk.Dec, places sdk.Int) sdk.Dec {
|
|
neg := places.IsNegative()
|
|
for i := 0; i < int(abs(places.Int64())); i++ {
|
|
if neg {
|
|
x = x.Mul(sdk.MustNewDecFromStr("0.1"))
|
|
} else {
|
|
x = x.Mul(sdk.NewDecFromInt(sdk.NewInt(10)))
|
|
}
|
|
|
|
}
|
|
return x
|
|
}
|
|
|
|
// abs returns the absolute value of x.
|
|
func abs(x int64) int64 {
|
|
if x < 0 {
|
|
return -x
|
|
}
|
|
return x
|
|
}
|