diff --git a/nym-validator-rewarder/src/rewarder/block_signing/types.rs b/nym-validator-rewarder/src/rewarder/block_signing/types.rs index f66cae9624..8cf31a5ba5 100644 --- a/nym-validator-rewarder/src/rewarder/block_signing/types.rs +++ b/nym-validator-rewarder/src/rewarder/block_signing/types.rs @@ -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)])) diff --git a/nym-validator-rewarder/src/rewarder/credential_issuance/types.rs b/nym-validator-rewarder/src/rewarder/credential_issuance/types.rs index aac01166ff..4b84870f70 100644 --- a/nym-validator-rewarder/src/rewarder/credential_issuance/types.rs +++ b/nym-validator-rewarder/src/rewarder/credential_issuance/types.rs @@ -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)]))