chore: remove tmp output

This commit is contained in:
MiniFrenchBread 2024-06-11 15:21:53 +08:00 committed by 0g-wh
parent 02e96e6424
commit 4b09c6cd37
2 changed files with 0 additions and 5 deletions

View File

@ -2,7 +2,6 @@ package keeper
import (
"bytes"
"fmt"
"math/big"
"sort"
@ -51,11 +50,9 @@ func (k Keeper) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {
}
bonded := k.GetDelegatorBonded(ctx, accAddr)
num := bonded.Quo(BondedConversionRate).Quo(tokensPerVote).Abs().BigInt()
fmt.Printf("ballots num: %v\n", num)
if num.Cmp(big.NewInt(int64(params.MaxVotesPerSigner))) > 0 {
num = big.NewInt(int64(params.MaxVotesPerSigner))
}
fmt.Printf("ballots num limited: %v\n", num)
content := registration.content
ballotNum := num.Int64()
for j := 0; j < int(ballotNum); j += 1 {

View File

@ -2,7 +2,6 @@ package keeper
import (
"encoding/hex"
"fmt"
"math/big"
"cosmossdk.io/math"
@ -233,7 +232,6 @@ func (k Keeper) CheckDelegations(ctx sdk.Context, account string) error {
bonded := k.GetDelegatorBonded(ctx, accAddr)
params := k.GetParams(ctx)
tokensPerVote := sdk.NewIntFromUint64(params.TokensPerVote)
fmt.Printf("account: %v, bonded: %v, conversion rate: %v, ticket: %v\n", account, bonded, BondedConversionRate, bonded.Quo(BondedConversionRate).Quo(tokensPerVote))
if bonded.Quo(BondedConversionRate).Quo(tokensPerVote).Abs().BigInt().Cmp(big.NewInt(0)) <= 0 {
return types.ErrInsufficientBonded
}