Skip to content

Commit

Permalink
Updating casper-node dependency to use new Transaction definition; up…
Browse files Browse the repository at this point in the history
…dating tests (#345)

Co-authored-by: Jakub Zajkowski <jakub@casperlabs.io>
  • Loading branch information
zajko and Jakub Zajkowski authored Oct 25, 2024
1 parent df5d9da commit fca0147
Show file tree
Hide file tree
Showing 11 changed files with 297 additions and 1,121 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
anyhow = "1"
async-stream = "0.3.4"
async-trait = "0.1.77"
casper-types = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
casper-types = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0", features = ["json-schema"]}
casper-binary-port = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
casper-event-sidecar = { path = "./event_sidecar", version = "1.0.0" }
casper-event-types = { path = "./types", version = "1.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion listener/src/connection_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ pub mod tests {
if let Ok(Err(ConnectionManagerError::NonRecoverableError { error })) = res {
assert_eq!(
error.to_string(),
"Serde Error: Couldn't deserialize Serde Error: expected value at line 1 column 1"
"Serde Error: Couldn't deserialize Error when deserializing SSE event from node: expected value at line 1 column 1"
)
} else {
unreachable!();
Expand Down
670 changes: 122 additions & 548 deletions resources/test/rpc_schema.json

Large diffs are not rendered by default.

Loading

0 comments on commit fca0147

Please sign in to comment.