File tree 1 file changed +7
-7
lines changed
actors/evm/src/interpreter/instructions
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -275,13 +275,13 @@ pub fn call_generic<RT: Runtime>(
275
275
} ;
276
276
277
277
let code = match system. rt . resolve_builtin_actor_type ( & cid) {
278
- Some ( Type :: EVM ) => system. rt
279
- . send ( & dst_addr, crate :: Method :: GetBytecode as u64 , Default :: default ( ) , TokenAmount :: zero ( ) ) ?
280
- . deserialize ( ) ?
281
- ,
282
- // other builtin actors & native actors
283
- _ => todo ! ( "revert when calling delegate call for native actors" )
284
- } ;
278
+ Some ( Type :: EVM ) => system. rt
279
+ . send ( & dst_addr, crate :: Method :: GetBytecode as u64 , Default :: default ( ) , TokenAmount :: zero ( ) ) ?
280
+ . deserialize ( ) ?
281
+ ,
282
+ // other builtin actors & native actors
283
+ _ => todo ! ( "revert when calling delegate call for native actors" )
284
+ } ;
285
285
286
286
// and then invoke self with delegate; readonly context is sticky
287
287
let params = DelegateCallParams {
You can’t perform that action at this time.
0 commit comments