mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
contracts: log Signer reward from Info to Debug
This commit is contained in:
parent
e2f0638fc0
commit
5bc578f4bc
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ func CalculateRewardForSigner(chainReward *big.Int, signers map[common.Address]*
|
|||
|
||||
log.Info("Signers data", "totalSigner", totalSigner, "totalReward", chainReward)
|
||||
for addr, signer := range signers {
|
||||
log.Info("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
|
||||
log.Debug("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
|
||||
}
|
||||
|
||||
return resultSigners, nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue