fix: increase number of retries

This commit is contained in:
Ludo Galabru
2023-07-24 14:47:02 -04:00
parent f9a38ddd6d
commit 343ddd65a8

View File

@@ -272,7 +272,7 @@ pub async fn execute_predicates_action<'a>(
actions_triggered += 1;
match action {
BitcoinChainhookOccurrence::Http(request) => {
send_request(request, 3, 1, &ctx).await?
send_request(request, 60, 3, &ctx).await?
}
BitcoinChainhookOccurrence::File(path, bytes) => {
file_append(path, bytes, &ctx)?