Skip to content

Commit

Permalink
fix: increase number of retries
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru committed Jul 24, 2023
1 parent f9a38dd commit 343ddd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/hord-cli/src/scan/bitcoin.rs
Expand Up @@ -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)?
Expand Down

0 comments on commit 343ddd6

Please sign in to comment.