File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,7 @@ impl Actor for SenderAllocation {
251251 }
252252 }
253253 SenderAllocationMessage :: TriggerRAVRequest => {
254+ println ! ( "Triggering RAV request!" ) ;
254255 let rav_result = if state. unaggregated_fees . value > 0 {
255256 state
256257 . request_rav ( )
@@ -260,12 +261,15 @@ impl Actor for SenderAllocation {
260261 Err ( anyhow ! ( "Unaggregated fee equals zero" ) )
261262 } ;
262263
264+ println ! ( "Returning the result!" ) ;
263265 state
264266 . sender_account_ref
265267 . cast ( SenderAccountMessage :: UpdateReceiptFees (
266268 state. allocation_id ,
267269 ReceiptFees :: RavRequestResponse ( rav_result) ,
268270 ) ) ?;
271+ println ! ( "Finished" ) ;
272+
269273 }
270274 #[ cfg( test) ]
271275 SenderAllocationMessage :: GetUnaggregatedReceipts ( reply) => {
You can’t perform that action at this time.
0 commit comments