Skip to content

Commit

Permalink
upgrade to 0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Jul 26, 2024
1 parent d25931c commit 7aba1b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.4.2", features = ["derive", "env"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
reqwest = { version = "0.11.20", features = ["json", "cookies"] }
reqwest = { version = "0.12.0", features = ["json", "cookies"] }
axum-macros = "0.4.1"
axum-extra = { version = "0.9.3", features = ["query"] }
chrono = { version = "0.4.30", features = ["serde"] }
Expand Down Expand Up @@ -84,4 +84,4 @@ fake = { version = "2.9.2", features = ["derive"] }
rand = "0.8.5"
bigdecimal = "0.4.5"
strum = "0.26.3"
strum_macros = "0.26.3"
strum_macros = "0.26.3"
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ tokio-retry.workspace = true
tokio.workspace = true
tracing.workspace = true
fake.workspace = true
rand.workspace = true
rand.workspace = true
4 changes: 2 additions & 2 deletions shared/src/block_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub struct BatchResults {
impl From<TxResult<String>> for BatchResults {
fn from(value: TxResult<String>) -> Self {
Self {
batch_results: value.batch_results.iter().fold(
batch_results: value.0.iter().fold(
BTreeMap::default(),
|mut acc, (tx_hash, result)| {
let tx_id = Id::from(*tx_hash);
Expand All @@ -73,7 +73,7 @@ impl From<TxResult<String>> for BatchResults {
acc
},
),
batch_errors: value.batch_results.iter().fold(
batch_errors: value.0.iter().fold(
BTreeMap::default(),
|mut acc, (tx_hash, result)| {
let tx_id = Id::from(*tx_hash);
Expand Down

0 comments on commit 7aba1b3

Please sign in to comment.