diff --git a/precompiles/vesting/src/mock.rs b/precompiles/vesting/src/mock.rs index b303d8f9d..f5839b1e2 100644 --- a/precompiles/vesting/src/mock.rs +++ b/precompiles/vesting/src/mock.rs @@ -327,9 +327,9 @@ impl ExtBuilder { .iter() .chain( [ - (TestAccount::Alex.into(), 10_00_000), - (TestAccount::Bobo.into(), 10_00_000), - (TestAccount::Charlie.into(), 10_00_000), + (TestAccount::Alex.into(), 1_000_000), + (TestAccount::Bobo.into(), 1_000_000), + (TestAccount::Charlie.into(), 1_000_000), ] .iter(), ) diff --git a/precompiles/vesting/src/tests.rs b/precompiles/vesting/src/tests.rs index ca36ba3b9..c3e5a4d04 100644 --- a/precompiles/vesting/src/tests.rs +++ b/precompiles/vesting/src/tests.rs @@ -94,7 +94,7 @@ fn test_vested_transfer() { .execute_returns(()); // Should transfer vested schedule to target account. - let vesting_info = pallet_vesting::Pallet::::vesting(&target); + let vesting_info = pallet_vesting::Pallet::::vesting(target); assert_eq!(vesting_info, Some(schedules)); }); }