Skip to content

Commit 29baa89

Browse files
committed
chore: fix errors after merge
1 parent 392d2f8 commit 29baa89

File tree

1 file changed

+5
-2
lines changed
  • stackslib/src/chainstate/nakamoto

1 file changed

+5
-2
lines changed

stackslib/src/chainstate/nakamoto/mod.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4207,11 +4207,13 @@ impl NakamotoChainState {
42074207
applied_epoch_transition: bool,
42084208
signers_updated: bool,
42094209
coinbase_height: u64,
4210+
phantom_lockup_events: Vec<StacksTransactionEvent>,
42104211
) -> Result<
42114212
(
42124213
StacksEpochReceipt,
42134214
PreCommitClarityBlock<'a>,
42144215
Option<RewardSetData>,
4216+
Vec<StacksTransactionEvent>,
42154217
),
42164218
ChainstateError,
42174219
> {
@@ -4248,7 +4250,7 @@ impl NakamotoChainState {
42484250
coinbase_height,
42494251
};
42504252

4251-
return Ok((epoch_receipt, clarity_commit, None));
4253+
return Ok((epoch_receipt, clarity_commit, None, phantom_lockup_events));
42524254
}
42534255

42544256
/// Append a Nakamoto Stacks block to the Stacks chain state.
@@ -4631,6 +4633,7 @@ impl NakamotoChainState {
46314633
applied_epoch_transition,
46324634
signer_set_calc.is_some(),
46334635
coinbase_height,
4636+
phantom_lockup_events,
46344637
);
46354638
}
46364639

@@ -4942,7 +4945,7 @@ impl NakamotoChainState {
49424945
unlock_tx,
49434946
events,
49444947
Value::okay_true(),
4945-
ExecutionCost::zero(),
4948+
ExecutionCost::ZERO,
49464949
);
49474950
Some(unlock_receipt)
49484951
}

0 commit comments

Comments
 (0)