Browse Source

fix storage mocks for latest substrate

Mokhtar Naamani 6 years ago
parent
commit
e40dcfa19b
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/storage/mock.rs

+ 3 - 2
src/storage/mock.rs

@@ -191,8 +191,9 @@ impl balances::Trait for Test {
     /// Handler for when a new account is created.
     type OnNewAccount = ();
 
-    /// A function that returns true iff a given account can transfer its funds to another account.
-    type EnsureAccountLiquid = ();
+    type TransactionPayment = ();
+    type DustRemoval = ();
+    type TransferPayment = ();
 }
 
 impl GovernanceCurrency for Test {