Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
distractedm1nd committed Sep 23, 2024
1 parent 8c56179 commit b262d58
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

1 change: 0 additions & 1 deletion crates/errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
ed25519-dalek = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
2 changes: 1 addition & 1 deletion crates/prism/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async fn main() -> std::io::Result<()> {

let sequencer_pubkey = config.verifying_key.and_then(|s| {
engine
.decode(&s)
.decode(s)
.map_err(|e| error!("Failed to decode base64 string: {}", e))
.ok()
.and_then(|bytes| {
Expand Down

0 comments on commit b262d58

Please sign in to comment.