Skip to content

Commit 774bddf

Browse files
author
hashkid
authored
Merge pull request #34 from sideprotocol/fix/timezone
release v0.4.1
2 parents f51d167 + 55c54df commit 774bddf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shuttler"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/protocols/sign.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ pub async fn dispatch_executions(swarm: &mut Swarm<TSSBehaviour>, signer: &Signe
219219
generate_commitments(swarm, signer, &mut task);
220220
},
221221
Status::WIP => {
222-
let window = TASK_INTERVAL.as_secs() * 10; // n = 20, n should large than 3
222+
let window = TASK_INTERVAL.as_secs() * 20; // n = 20, n should large than 3
223223
let retry = (now() - task.start_time) / window;
224224

225225
if task.retry != retry {

0 commit comments

Comments
 (0)