Skip to content

Commit

Permalink
Merge pull request #34 from sideprotocol/fix/timezone
Browse files Browse the repository at this point in the history
release v0.4.1
  • Loading branch information
lazyluis authored Nov 14, 2024
2 parents f51d167 + 55c54df commit 774bddf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttler"
version = "0.4.0"
version = "0.4.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ pub async fn dispatch_executions(swarm: &mut Swarm<TSSBehaviour>, signer: &Signe
generate_commitments(swarm, signer, &mut task);
},
Status::WIP => {
let window = TASK_INTERVAL.as_secs() * 10; // n = 20, n should large than 3
let window = TASK_INTERVAL.as_secs() * 20; // n = 20, n should large than 3
let retry = (now() - task.start_time) / window;

if task.retry != retry {
Expand Down

0 comments on commit 774bddf

Please sign in to comment.