From c5a9b504f931644b292312b018fce97f999fd234 Mon Sep 17 00:00:00 2001 From: Weiliang Li <to.be.impressive@gmail.com> Date: Wed, 27 Nov 2019 22:13:00 +0900 Subject: [PATCH] fix ligature glitch in frame/staking/src/lib.rs (#4217) --- substrate/frame/staking/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/frame/staking/src/lib.rs b/substrate/frame/staking/src/lib.rs index 29aeb7901c4..ae9e53c8510 100644 --- a/substrate/frame/staking/src/lib.rs +++ b/substrate/frame/staking/src/lib.rs @@ -445,7 +445,7 @@ type PositiveImbalanceOf<T> = <<T as Trait>::Currency as Currency<<T as system::Trait>::AccountId>>::PositiveImbalance; type NegativeImbalanceOf<T> = <<T as Trait>::Currency as Currency<<T as system::Trait>::AccountId>>::NegativeImbalance; -type MomentOf<T>= <<T as Trait>::Time as Time>::Moment; +type MomentOf<T> = <<T as Trait>::Time as Time>::Moment; /// Means for interacting with a specialized version of the `session` trait. /// -- GitLab