Fix Bench-tps being too strict (#6105)

automerge
This commit is contained in:
Sagar Dhawan 2019-09-25 17:43:13 -07:00 committed by Grimes
parent e2a5ec9cd2
commit 56f6ee84f1
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ fn main() {
last_balance = primordial_account.balance;
});
if keypairs.len() != tx_count * 2 {
if keypairs.len() < tx_count * 2 {
eprintln!(
"Expected {} accounts in {}, only received {} (--tx_count mismatch?)",
tx_count * 2,