Skip to content
Snippets Groups Projects
Commit 75db7f7f authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Fix transaction benchmark (#886)

We need to give the accounts more coins!!
parent 32fcd464
Branches
No related merge requests found
......@@ -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(),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment