Skip to content

Commit e0e3c9f

Browse files
committed
fix: remove redundant refs after rebase
1 parent c430131 commit e0e3c9f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

crates/duty-tracker/src/contract_manager.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ async fn execute_duty(
12511251
stake_chain_inputs,
12521252
} => {
12531253
handle_publish_deposit_setup(
1254-
&cfg,
1254+
cfg,
12551255
output_handles.clone(),
12561256
deposit_txid,
12571257
deposit_idx,
@@ -1311,7 +1311,7 @@ async fn execute_duty(
13111311
sighash,
13121312
} => {
13131313
handle_publish_root_signature(
1314-
&cfg,
1314+
cfg,
13151315
&output_handles.s2_session_manager,
13161316
&output_handles.msg_handler,
13171317
nonces,
@@ -1344,10 +1344,10 @@ async fn execute_duty(
13441344
stake_tx,
13451345
} => match stake_tx {
13461346
StakeTxKind::Head(stake_tx) => {
1347-
handle_publish_first_stake(&cfg, output_handles, stake_tx).await
1347+
handle_publish_first_stake(cfg, output_handles, stake_tx).await
13481348
}
13491349
StakeTxKind::Tail(stake_tx) => {
1350-
handle_advance_stake_chain(&cfg, output_handles, stake_index, stake_tx).await
1350+
handle_advance_stake_chain(cfg, output_handles, stake_index, stake_tx).await
13511351
}
13521352
},
13531353
FulfillerDuty::PublishFulfillment {
@@ -1368,7 +1368,7 @@ async fn execute_duty(
13681368
deposit_txid,
13691369
} => {
13701370
handle_publish_claim(
1371-
&cfg,
1371+
cfg,
13721372
output_handles.clone(),
13731373
stake_txid,
13741374
deposit_txid,
@@ -1384,7 +1384,7 @@ async fn execute_duty(
13841384
partials,
13851385
} => {
13861386
handle_publish_payout_optimistic(
1387-
&cfg,
1387+
cfg,
13881388
output_handles.clone(),
13891389
deposit_txid,
13901390
claim_txid,

crates/duty-tracker/src/executors/optimistic_withdrawal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ pub(crate) async fn handle_advance_stake_chain(
160160

161161
/// Constructs, finalizes and broadcasts the Withdrawal Fulfillment Transaction.
162162
pub(crate) async fn handle_withdrawal_fulfillment(
163-
cfg: ExecutionConfig,
163+
cfg: &ExecutionConfig,
164164
output_handles: Arc<OutputHandles>,
165165
withdrawal_metadata: WithdrawalMetadata,
166166
user_descriptor: Descriptor,

0 commit comments

Comments
 (0)