From 8aece2db12d81177e4c0c7b74e23dd9e4a0bca27 Mon Sep 17 00:00:00 2001
From: Xiliang Chen <xlchen1291@gmail.com>
Date: Thu, 13 Feb 2020 12:05:04 +1300
Subject: [PATCH] fix tests with latest substrate (#88)

---
 currencies/src/mock.rs | 2 +-
 vesting/src/mock.rs    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/currencies/src/mock.rs b/currencies/src/mock.rs
index b3f20d3..2a20a01 100644
--- a/currencies/src/mock.rs
+++ b/currencies/src/mock.rs
@@ -49,7 +49,7 @@ type CurrencyId = u32;
 type Balance = u64;
 
 parameter_types! {
-	pub const ExistentialDeposit: u64 = 0;
+	pub const ExistentialDeposit: u64 = 1;
 	pub const CreationFee: u64 = 2;
 }
 
diff --git a/vesting/src/mock.rs b/vesting/src/mock.rs
index dc4c382..4b468e0 100644
--- a/vesting/src/mock.rs
+++ b/vesting/src/mock.rs
@@ -56,7 +56,7 @@ pub type System = system::Module<Runtime>;
 type Balance = u64;
 
 parameter_types! {
-	pub const ExistentialDeposit: u64 = 0;
+	pub const ExistentialDeposit: u64 = 1;
 	pub const CreationFee: u64 = 0;
 }
 
-- 
GitLab