Skip to content

Commit 9336743

Browse files
committed
test: add some println stmt
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent dcb80a4 commit 9336743

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tap-agent/src/agent/sender_allocation.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)