Skip to content

Commit

Permalink
add missing explicit gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaicalinluca committed May 20, 2024
1 parent bbbc23d commit 0a024a9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use num_bigint::BigUint;

use crate::{
call_tree::{CallNode, CallState, ForwarderQueueTarget},
comp_interact_controller::ComposabilityInteract, forwarder_queue_proxy::{self, QueuedCallType},
comp_interact_controller::ComposabilityInteract,
forwarder_queue_proxy::{self, QueuedCallType},
};

const FORWARD_QUEUED_CALLS_ENDPOINT: &str = "forward_queued_calls";
Expand Down Expand Up @@ -119,6 +120,7 @@ impl ComposabilityInteract {
self.interactor
.tx()
.from(&self.wallet_address)
.gas(70_000_000u64)
.to(&root_addr)
.typed(forwarder_queue_proxy::ForwarderQueueProxy)
.forward_queued_calls()
Expand Down

0 comments on commit 0a024a9

Please sign in to comment.