@@ -672,7 +672,7 @@ impl<'config, 'precompiles, S: StackState<'config>, P: PrecompileSet>
672
672
let mut stream = rlp:: RlpStream :: new_list ( 2 ) ;
673
673
stream. append ( & caller) ;
674
674
stream. append ( & nonce) ;
675
- H256 :: from_slice ( Keccak256 :: digest ( & stream. out ( ) ) . as_slice ( ) ) . into ( )
675
+ H256 :: from_slice ( Keccak256 :: digest ( stream. out ( ) ) . as_slice ( ) ) . into ( )
676
676
}
677
677
CreateScheme :: Fixed ( naddress) => naddress,
678
678
}
@@ -1087,8 +1087,8 @@ impl<'config, 'precompiles, S: StackState<'config>, P: PrecompileSet>
1087
1087
pub struct StackExecutorCallInterrupt < ' borrow > ( TaggedRuntime < ' borrow > ) ;
1088
1088
pub struct StackExecutorCreateInterrupt < ' borrow > ( TaggedRuntime < ' borrow > ) ;
1089
1089
1090
- impl < ' config , ' precompiles , S : StackState < ' config > , P : PrecompileSet > Handler
1091
- for StackExecutor < ' config , ' precompiles , S , P >
1090
+ impl < ' config , S : StackState < ' config > , P : PrecompileSet > Handler
1091
+ for StackExecutor < ' config , ' _ , S , P >
1092
1092
{
1093
1093
type CreateInterrupt = StackExecutorCreateInterrupt < ' static > ;
1094
1094
type CreateFeedback = Infallible ;
@@ -1210,12 +1210,7 @@ impl<'config, 'precompiles, S: StackState<'config>, P: PrecompileSet> Handler
1210
1210
Ok ( ( ) )
1211
1211
}
1212
1212
1213
- fn set_transient_storage (
1214
- & mut self ,
1215
- address : H160 ,
1216
- index : H256 ,
1217
- value : H256 ,
1218
- ) {
1213
+ fn set_transient_storage ( & mut self , address : H160 , index : H256 , value : H256 ) {
1219
1214
self . state . set_transient_storage ( address, index, value) ;
1220
1215
}
1221
1216
@@ -1402,8 +1397,8 @@ struct StackExecutorHandle<'inner, 'config, 'precompiles, S, P> {
1402
1397
is_static : bool ,
1403
1398
}
1404
1399
1405
- impl < ' inner , ' config , ' precompiles , S : StackState < ' config > , P : PrecompileSet > PrecompileHandle
1406
- for StackExecutorHandle < ' inner , ' config , ' precompiles , S , P >
1400
+ impl < ' config , S : StackState < ' config > , P : PrecompileSet > PrecompileHandle
1401
+ for StackExecutorHandle < ' _ , ' config , ' _ , S , P >
1407
1402
{
1408
1403
// Perform subcall in provided context.
1409
1404
/// Precompile specifies in which context the subcall is executed.
0 commit comments