diff --git a/web3_proxy/src/sub_commands/mass_grant_credits.rs b/web3_proxy/src/sub_commands/mass_grant_credits.rs index b53845f8..658f7c53 100644 --- a/web3_proxy/src/sub_commands/mass_grant_credits.rs +++ b/web3_proxy/src/sub_commands/mass_grant_credits.rs @@ -49,6 +49,8 @@ impl MassGrantCredits { while let Some(users_to_upgrade) = user_stream.try_next().await? { let txn = db_conn.begin().await?; + info!("Upgrading {} users", users_to_upgrade.len()); + for user_to_upgrade in users_to_upgrade { if self.credits > 0.into() { let increase_balance_receipt = admin_increase_balance_receipt::ActiveModel {