From 75db7f7f7ed5ca9b4e2273f00bac32c31ccd4bd7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <bkchr@users.noreply.github.com>
Date: Tue, 4 Jan 2022 23:59:58 +0100
Subject: [PATCH] Fix transaction benchmark (#886)

We need to give the accounts more coins!!
---
 cumulus/test/service/benches/transaction_throughput.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cumulus/test/service/benches/transaction_throughput.rs b/cumulus/test/service/benches/transaction_throughput.rs
index 0ad9b3a3f1e..17722e6bd60 100644
--- a/cumulus/test/service/benches/transaction_throughput.rs
+++ b/cumulus/test/service/benches/transaction_throughput.rs
@@ -71,7 +71,7 @@ fn create_account_extrinsics(client: &Client, accounts: &[sr25519::Pair]) -> Vec
 						call: Box::new(
 							BalancesCall::set_balance {
 								who: AccountId::from(a.public()).into(),
-								new_free: 1_000_000 * ExistentialDeposit::get(),
+								new_free: 1_000_000_000_000 * ExistentialDeposit::get(),
 								new_reserved: 0,
 							}
 							.into(),
-- 
GitLab