Test the processor's batch signing

Updates message-queue ot try recv every second, not 5.
This commit is contained in:
Luke Parker
2023-07-25 18:09:23 -04:00
parent a2493cfafc
commit 88a1fce15c
8 changed files with 123 additions and 35 deletions

View File

@@ -153,9 +153,9 @@ impl MessageQueue {
)
.expect("next didn't return an Option<QueuedMessage>");
// If there wasn't a message, check again in 5s
// If there wasn't a message, check again in 1s
let Some(msg) = msg else {
tokio::time::sleep(core::time::Duration::from_secs(5)).await;
tokio::time::sleep(core::time::Duration::from_secs(1)).await;
continue;
};