We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3625028 commit 3d6ea0dCopy full SHA for 3d6ea0d
tap-agent/src/agent/sender_allocation.rs
@@ -1570,6 +1570,8 @@ pub mod tests {
1570
Some(sender_account),
1571
)
1572
.await;
1573
+
1574
+ tokio::time::sleep(std::time::Duration::from_millis(20)).await;
1575
// Trigger a RAV request manually and wait for updated fees.
1576
// this should fail because there's no receipt with valid timestamp
1577
sender_allocation
@@ -1581,6 +1583,7 @@ pub mod tests {
1581
1583
// If it is an error then rav request failed
1582
1584
{
1585
let mut last_message = last_message_emitted.lock().unwrap();
1586
+ println!("{:?}", *last_message);
1587
match last_message.pop() {
1588
Some(SenderAccountMessage::UpdateReceiptFees(
1589
_,
0 commit comments