From 0ead854e27d06feb92aa894b313b1a11ac9d684a Mon Sep 17 00:00:00 2001 From: Justin Date: Sat, 28 Oct 2023 12:06:05 +1300 Subject: [PATCH] Increase initial balance of account 0 --- pallets/nft/src/mock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/nft/src/mock.rs b/pallets/nft/src/mock.rs index 171fe8337..6fc8ecaf0 100644 --- a/pallets/nft/src/mock.rs +++ b/pallets/nft/src/mock.rs @@ -306,7 +306,7 @@ impl ExtBuilder { .unwrap(); pallet_balances::GenesisConfig:: { - balances: vec![([1; 32].into(), 100000), ([2; 32].into(), 1000)], + balances: vec![([0; 32].into(), 100), ([1; 32].into(), 100000), ([2; 32].into(), 1000)], } .assimilate_storage(&mut t) .unwrap();