@@ -183,7 +183,7 @@ fn panic_execution_with_foreign_code_gives_error() {
183183 let mut t = new_test_ext ( bloaty_code_unwrap ( ) ) ;
184184 t. insert (
185185 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
186- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
186+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
187187 providers : 1 ,
188188 data : ( 69u128 , 0u128 , 0u128 , 1u128 << 127 ) ,
189189 ..Default :: default ( )
@@ -209,7 +209,7 @@ fn bad_extrinsic_with_native_equivalent_code_gives_error() {
209209 let mut t = new_test_ext ( compact_code_unwrap ( ) ) ;
210210 t. insert (
211211 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
212- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
212+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
213213 providers : 1 ,
214214 data : ( 69u128 , 0u128 , 0u128 , 1u128 << 127 ) ,
215215 ..Default :: default ( )
@@ -235,7 +235,7 @@ fn successful_execution_with_native_equivalent_code_gives_ok() {
235235 let mut t = new_test_ext ( compact_code_unwrap ( ) ) ;
236236 t. insert (
237237 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
238- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
238+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
239239 providers : 1 ,
240240 data : ( 111 * DOLLARS , 0u128 , 0u128 , 1u128 << 127 ) ,
241241 ..Default :: default ( )
@@ -245,7 +245,7 @@ fn successful_execution_with_native_equivalent_code_gives_ok() {
245245 t. insert (
246246 <frame_system:: Account < Runtime > >:: hashed_key_for ( bob ( ) ) ,
247247 AccountInfo :: <
248- <Runtime as frame_system:: Config >:: Index ,
248+ <Runtime as frame_system:: Config >:: Nonce ,
249249 <Runtime as frame_system:: Config >:: AccountData ,
250250 > :: default ( )
251251 . encode ( ) ,
@@ -277,7 +277,7 @@ fn successful_execution_with_foreign_code_gives_ok() {
277277 let mut t = new_test_ext ( bloaty_code_unwrap ( ) ) ;
278278 t. insert (
279279 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
280- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
280+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
281281 providers : 1 ,
282282 data : ( 111 * DOLLARS , 0u128 , 0u128 , 1u128 << 127 ) ,
283283 ..Default :: default ( )
@@ -287,7 +287,7 @@ fn successful_execution_with_foreign_code_gives_ok() {
287287 t. insert (
288288 <frame_system:: Account < Runtime > >:: hashed_key_for ( bob ( ) ) ,
289289 AccountInfo :: <
290- <Runtime as frame_system:: Config >:: Index ,
290+ <Runtime as frame_system:: Config >:: Nonce ,
291291 <Runtime as frame_system:: Config >:: AccountData ,
292292 > :: default ( )
293293 . encode ( ) ,
@@ -766,7 +766,7 @@ fn panic_execution_gives_error() {
766766 let mut t = new_test_ext ( bloaty_code_unwrap ( ) ) ;
767767 t. insert (
768768 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
769- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
769+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
770770 data : ( 0 * DOLLARS , 0u128 , 0u128 , 0u128 ) ,
771771 ..Default :: default ( )
772772 }
@@ -795,7 +795,7 @@ fn successful_execution_gives_ok() {
795795 let mut t = new_test_ext ( compact_code_unwrap ( ) ) ;
796796 t. insert (
797797 <frame_system:: Account < Runtime > >:: hashed_key_for ( alice ( ) ) ,
798- AccountInfo :: < <Runtime as frame_system:: Config >:: Index , _ > {
798+ AccountInfo :: < <Runtime as frame_system:: Config >:: Nonce , _ > {
799799 providers : 1 ,
800800 data : ( 111 * DOLLARS , 0u128 , 0u128 , 1u128 << 127 ) ,
801801 ..Default :: default ( )
@@ -805,7 +805,7 @@ fn successful_execution_gives_ok() {
805805 t. insert (
806806 <frame_system:: Account < Runtime > >:: hashed_key_for ( bob ( ) ) ,
807807 AccountInfo :: <
808- <Runtime as frame_system:: Config >:: Index ,
808+ <Runtime as frame_system:: Config >:: Nonce ,
809809 <Runtime as frame_system:: Config >:: AccountData ,
810810 > :: default ( )
811811 . encode ( ) ,
0 commit comments