Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit e838831

Browse files
authoredAug 8, 2022
chore(deps): downagrade anyhow to 1.0.59 (#722)
See dtolnay/anyhow#250 The `backtrace` feature is unified against the various anyhow versions we use.
1 parent 53b6549 commit e838831

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎crypto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
publish = false
88

99
[dependencies]
10-
anyhow = { version = "1.0.60", features = ["backtrace"] }
10+
anyhow = { version = "1.0.59", features = ["backtrace"] }
1111
ark-bls12-377 = { version = "0.3.0", features = ["std"], optional = true }
1212
base64ct = { version = "1.5.1", features = ["alloc"] }
1313
ed25519-consensus = { version = "2.0.1", features = ["serde"] }

‎network/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
publish = false
88

99
[dependencies]
10-
anyhow = "1.0.60"
10+
anyhow = "1.0.59"
1111
async-trait = "0.1.57"
1212
backoff = { version = "0.4.0", features = ["tokio"] }
1313
bytes = "1.2.1"

‎node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Mysten Labs <build@mystenlabs.com>"]
66
edition = "2021"
77

88
[dependencies]
9-
anyhow = "1.0.60"
9+
anyhow = "1.0.59"
1010
arc-swap = { version = "1.5.1", features = ["serde"] }
1111
async-trait = "0.1.57"
1212
bincode = "1.3.3"

‎worker/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Mysten Labs <build@mystenlabs.com>"]
66
edition = "2021"
77

88
[dependencies]
9-
anyhow = "1.0.60"
9+
anyhow = "1.0.59"
1010
async-trait = "0.1.57"
1111
bincode = "1.3.3"
1212
blake2 = "0.9"

1 commit comments

Comments
 (1)

github-actions[bot] commented on Aug 8, 2022

@github-actions[bot]

Bench results


SUMMARY:

  • CONFIG:
    Faults: 0 node(s)
    Committee size: 4 node(s)
    Worker(s) per node: 1 worker(s)
    Collocate primary and workers: True
    Input rate: 50,000 tx/s
    Transaction size: 512 B
    Execution time: 20 s

Header size: 1,000 B
Max header delay: 200 ms
GC depth: 50 round(s)
Sync retry delay: 10,000 ms
Sync retry nodes: 3 node(s)
batch size: 500,000 B
Max batch delay: 200 ms
Max concurrent requests: 500,000

  • RESULTS:
    Consensus TPS: 32,313 tx/s
    Consensus BPS: 16,544,353 B/s
    Consensus latency: 1,671 ms

End-to-end TPS: 32,170 tx/s
End-to-end BPS: 16,471,243 B/s
End-to-end latency: 2,084 ms

PR to merge e838831 ->
This repository has been archived.