Skip to content

Commit

Permalink
go-flare-common version 0.1.6 -> 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GrePod committed Dec 12, 2024
1 parent 0c17977 commit 23d9939
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ size = 10
max_dequeues_per_second = 100 # 0 for unlimited
max_workers = 10 # 0 for unlimited
max_attempts = 3 # negative for unlimited
time_off = 2 # in seconds. Time off after each unsuccessful attempt.
time_off = "2s" # time off after each unsuccessful attempt.
```

### System Configs
Expand Down
12 changes: 6 additions & 6 deletions configs/userConfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -188,39 +188,39 @@ size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

[queues.doge]
size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

[queues.xrp]
size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

[queues.eth]
size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

[queues.sgb]
size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

[queues.flr]
size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/BurntSushi/toml v1.4.0
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
github.com/ethereum/go-ethereum v1.14.11
github.com/flare-foundation/go-flare-common v0.1.6
github.com/flare-foundation/go-flare-common v1.0.0
github.com/gorilla/mux v1.8.1
github.com/pkg/errors v0.9.1
github.com/rs/cors v1.11.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ github.com/ethereum/go-ethereum v1.14.11 h1:8nFDCUUE67rPc6AKxFj7JKaOa2W/W1Rse3oS
github.com/ethereum/go-ethereum v1.14.11/go.mod h1:+l/fr42Mma+xBnhefL/+z11/hcmJ2egl+ScIVPjhc7E=
github.com/ethereum/go-verkle v0.1.1-0.20240829091221-dffa7562dbe9 h1:8NfxH2iXvJ60YRB8ChToFTUzl8awsc3cJ8CbLjGIl/A=
github.com/ethereum/go-verkle v0.1.1-0.20240829091221-dffa7562dbe9/go.mod h1:M3b90YRnzqKyyzBEWJGqj8Qff4IDeXnzFw0P9bFw3uk=
github.com/flare-foundation/go-flare-common v0.1.6 h1:i4O1MP/xTBm9MSs4rko1avO8GZh1L13tliI5BtJwVSc=
github.com/flare-foundation/go-flare-common v0.1.6/go.mod h1:Pb1OAtNe8jNsD2fh6syJD6kVdqxAAXWESTGgd7uQlME=
github.com/flare-foundation/go-flare-common v1.0.0 h1:doNCazmtgEDyJfEo62OnVUHtPQEyxZWEFjQ5hwt+Vlw=
github.com/flare-foundation/go-flare-common v1.0.0/go.mod h1:Pb1OAtNe8jNsD2fh6syJD6kVdqxAAXWESTGgd7uQlME=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
Expand Down
2 changes: 1 addition & 1 deletion tests/configs/simulationConfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"
2 changes: 1 addition & 1 deletion tests/configs/testConfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ size = 10
max_dequeues_per_second = 0
max_workers = 0
max_attempts = 3
time_off = 2
time_off = "2s"

0 comments on commit 23d9939

Please sign in to comment.