Skip to content

Commit

Permalink
fix: fee decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 committed Dec 25, 2023
1 parent 417645f commit 889a9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/paramHub/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (keeper *Keeper) SetSyncFeeAfterFirstSunsetFork(ctx sdk.Context) {
log.Info("Set sync fee to 0.05 BNB after first sunset hardfork")
sideChainIds, storePrefixes := keeper.ScKeeper.GetAllSideChainPrefixes(ctx)
cscChanges := make([]types.CSCParamChange, 0, 1)
fee := new(big.Int).Mul(big.NewInt(5), big.NewInt(1e10))
fee := new(big.Int).Mul(big.NewInt(5), big.NewInt(1e18))
fee = new(big.Int).Div(fee, big.NewInt(100))
cscChanges = append(cscChanges, types.CSCParamChange{
Key: "syncFee",
Expand Down

0 comments on commit 889a9ee

Please sign in to comment.