Skip to content

Commit

Permalink
Merge pull request #604 from chainbound/jonas/feat/release-v0.3.1-alpha
Browse files Browse the repository at this point in the history
feat: release v0.3.1-alpha
  • Loading branch information
Jonas Bostoen authored Dec 20, 2024
2 parents c9d59d6 + 192ae72 commit 90b19c2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bolt-sidecar/Cargo.lock

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

30 changes: 19 additions & 11 deletions bolt-sidecar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolt-sidecar"
version = "0.3.0-alpha"
version = "0.3.1-alpha"
edition = "2021"
default-run = "bolt-sidecar"

Expand Down Expand Up @@ -30,21 +30,27 @@ ethereum_ssz = "0.8.1"

# alloy
alloy = { version = "0.8.0", features = [
"full",
"provider-trace-api",
"rpc-types-beacon",
"full",
"provider-trace-api",
"rpc-types-beacon",
] }
alloy-rpc-types-engine = { version = "0.8.0", default-features = false, features = [
"jwt",
] }
alloy-transport-http = { version = "0.8.0", default-features = false, features = [
"jwt-auth",
] }
alloy-provider = { version = "0.8.0", default-features = false, features = [
"engine-api",
] }
alloy-rpc-types-engine = { version = "0.8.0", default-features = false, features = ["jwt"] }
alloy-transport-http = { version = "0.8.0", default-features = false, features = ["jwt-auth"] }
alloy-provider = { version = "0.8.0", default-features = false, features = ["engine-api"] }

# reth
reth-primitives = { git = "https://github.com/paradigmxyz/reth", version = "1.1.4" }

reqwest = "0.12"

ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "8fbd8a5" } # Last release in 2022
beacon-api-client = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "8fbd8a5" } # Last release in 2022
beacon-api-client = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "8fbd8a5" } # Last release in 2022

# lighthouse
lighthouse_account_utils = { package = "account_utils", git = "https://github.com/sigp/lighthouse", version = "0.1.0" }
Expand Down Expand Up @@ -73,11 +79,13 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }

# telemetry
metrics = "0.23"
metrics-exporter-prometheus = { version = "0.15.3", features = ["http-listener"] }
metrics-exporter-prometheus = { version = "0.15.3", features = [
"http-listener",
] }

# commit-boost
commit-boost = { git = "https://github.com/Commit-Boost/commit-boost-client", rev = "0f8f69b" }
cb-common = { git = "https://github.com/Commit-Boost/commit-boost-client", rev = "0f8f69b" }
commit-boost = { git = "https://github.com/Commit-Boost/commit-boost-client", rev = "0f8f69b" }
cb-common = { git = "https://github.com/Commit-Boost/commit-boost-client", rev = "0f8f69b" }

[dev-dependencies]
alloy-node-bindings = "0.8.0" # must match alloy version
Expand Down
2 changes: 1 addition & 1 deletion bolt-sidecar/src/client/constraints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ impl ConstraintsApi for ConstraintsClient {
.send()
.await?;

if response.status() != StatusCode::NO_CONTENT {
if response.status() == StatusCode::NO_CONTENT {
return Err(BuilderApiError::NoBids(params.slot));
}

Expand Down

0 comments on commit 90b19c2

Please sign in to comment.