@@ -253,55 +253,56 @@ impl VerifyBytecodeArgs {
253253
254254 match network {
255255 NetworkVariant :: Ethereum => {
256- self . run_with_network_and_config :: < EthEvmNetwork > (
256+ Box :: pin ( self . run_with_network_and_config :: < EthEvmNetwork > (
257257 config,
258258 endpoint_identity,
259259 network_was_inferred,
260260 replay_block_transactions :: < EthEvmNetwork > ,
261261 ExecutorBuilder :: < EthEvmNetwork > :: new ( ) ,
262- )
262+ ) )
263263 . await
264264 }
265265 #[ cfg( feature = "base" ) ]
266266 NetworkVariant :: Base => {
267- self . run_with_network_and_config :: < BaseEvmNetwork > (
267+ Box :: pin ( self . run_with_network_and_config :: < BaseEvmNetwork > (
268268 config,
269269 endpoint_identity,
270270 network_was_inferred,
271271 replay_block_transactions :: < BaseEvmNetwork > ,
272- )
272+ ExecutorBuilder :: < BaseEvmNetwork > :: new ( ) ,
273+ ) )
273274 . await
274275 }
275276 #[ cfg( feature = "optimism" ) ]
276277 NetworkVariant :: Optimism => {
277- self . run_with_network_and_config :: < OpEvmNetwork > (
278+ Box :: pin ( self . run_with_network_and_config :: < OpEvmNetwork > (
278279 config,
279280 endpoint_identity,
280281 network_was_inferred,
281282 replay_block_transactions :: < OpEvmNetwork > ,
282283 ExecutorBuilder :: < OpEvmNetwork > :: new ( ) ,
283- )
284+ ) )
284285 . await
285286 }
286287 NetworkVariant :: Tempo => {
287- self . run_with_network_and_config :: < TempoEvmNetwork > (
288+ Box :: pin ( self . run_with_network_and_config :: < TempoEvmNetwork > (
288289 config,
289290 endpoint_identity,
290291 network_was_inferred,
291292 replay_block_transactions :: < TempoEvmNetwork > ,
292293 ExecutorBuilder :: < TempoEvmNetwork > :: new ( ) ,
293- )
294+ ) )
294295 . await
295296 }
296297 #[ cfg( feature = "monad" ) ]
297298 NetworkVariant :: Monad => {
298- self . run_with_network_and_config :: < MonadEvmNetwork > (
299+ Box :: pin ( self . run_with_network_and_config :: < MonadEvmNetwork > (
299300 config,
300301 endpoint_identity,
301302 network_was_inferred,
302303 replay_monad_block_transactions,
303304 ExecutorBuilder :: < MonadEvmNetwork > :: new ( ) ,
304- )
305+ ) )
305306 . await
306307 }
307308 }
0 commit comments