added whitelisting information in logs
This commit is contained in:
@@ -141,10 +141,11 @@ impl EpochSigningResults {
|
||||
.iter()
|
||||
.inspect(|v| {
|
||||
info!(
|
||||
"validator {} will receive {} at address {} for block signing work",
|
||||
"validator {} will receive {} at address {} for block signing work (whitelisted: {})",
|
||||
v.moniker(),
|
||||
v.reward_amount(budget),
|
||||
v.operator_account
|
||||
v.operator_account,
|
||||
v.whitelisted
|
||||
);
|
||||
})
|
||||
.map(|v| (v.operator_account.clone(), vec![v.reward_amount(budget)]))
|
||||
|
||||
@@ -324,10 +324,11 @@ impl CredentialIssuanceResults {
|
||||
.iter()
|
||||
.inspect(|a| {
|
||||
info!(
|
||||
"operator {} will receive {} at address {} for credential issuance work",
|
||||
"operator {} will receive {} at address {} for credential issuance work (whitelisted: {})",
|
||||
a.api_runner,
|
||||
a.reward_amount(budget),
|
||||
a.runner_account,
|
||||
a.whitelisted
|
||||
);
|
||||
})
|
||||
.map(|v| (v.runner_account.clone(), vec![v.reward_amount(budget)]))
|
||||
|
||||
Reference in New Issue
Block a user