File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
stackslib/src/chainstate/nakamoto Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4207,11 +4207,13 @@ impl NakamotoChainState {
4207
4207
applied_epoch_transition : bool ,
4208
4208
signers_updated : bool ,
4209
4209
coinbase_height : u64 ,
4210
+ phantom_lockup_events : Vec < StacksTransactionEvent > ,
4210
4211
) -> Result <
4211
4212
(
4212
4213
StacksEpochReceipt ,
4213
4214
PreCommitClarityBlock < ' a > ,
4214
4215
Option < RewardSetData > ,
4216
+ Vec < StacksTransactionEvent > ,
4215
4217
) ,
4216
4218
ChainstateError ,
4217
4219
> {
@@ -4248,7 +4250,7 @@ impl NakamotoChainState {
4248
4250
coinbase_height,
4249
4251
} ;
4250
4252
4251
- return Ok ( ( epoch_receipt, clarity_commit, None ) ) ;
4253
+ return Ok ( ( epoch_receipt, clarity_commit, None , phantom_lockup_events ) ) ;
4252
4254
}
4253
4255
4254
4256
/// Append a Nakamoto Stacks block to the Stacks chain state.
@@ -4631,6 +4633,7 @@ impl NakamotoChainState {
4631
4633
applied_epoch_transition,
4632
4634
signer_set_calc. is_some ( ) ,
4633
4635
coinbase_height,
4636
+ phantom_lockup_events,
4634
4637
) ;
4635
4638
}
4636
4639
@@ -4942,7 +4945,7 @@ impl NakamotoChainState {
4942
4945
unlock_tx,
4943
4946
events,
4944
4947
Value :: okay_true ( ) ,
4945
- ExecutionCost :: zero ( ) ,
4948
+ ExecutionCost :: ZERO ,
4946
4949
) ;
4947
4950
Some ( unlock_receipt)
4948
4951
}
You can’t perform that action at this time.
0 commit comments