Skip to content

Commit 2acff96

Browse files
committed
Merge master into polkadot-stable2503
2 parents d3f7004 + 784ec66 commit 2acff96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vesting/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ pub const VESTING_LOCK_ID: LockIdentifier = *b"ormlvest";
5959
/// Benefits would be granted gradually, `per_period` amount every `period`
6060
/// of blocks after `start`.
6161
#[derive(Clone, Encode, Decode, PartialEq, Eq, RuntimeDebug, MaxEncodedLen, TypeInfo, DecodeWithMemTracking)]
62-
pub struct VestingSchedule<BlockNumber, Balance: MaxEncodedLen + HasCompact> {
62+
pub struct VestingSchedule<BlockNumber, Balance>
63+
where
64+
Balance: MaxEncodedLen + HasCompact,
65+
{
6366
/// Vesting starting block
6467
pub start: BlockNumber,
6568
/// Number of blocks between vest

0 commit comments

Comments
 (0)