Skip to content

Commit

Permalink
Bump scale-value and scale-decode (paritytech#659)
Browse files Browse the repository at this point in the history
* Bump scale-value and scale-decode (these both compile to wasm ok)

* clippy
  • Loading branch information
jsdw authored Sep 21, 2022
1 parent 3bf7ddc commit 52dd640
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions subxt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jsonrpsee = ["dep:jsonrpsee"]
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
scale-info = { version = "2.0.0", features = ["bit-vec"] }
scale-value = "0.5.0"
scale-decode = "0.3.0"
scale-value = "0.6.0"
scale-decode = "0.4.0"
futures = "0.3.13"
hex = "0.4.3"
jsonrpsee = { version = "0.15.1", features = ["async-client", "client-ws-transport", "jsonrpsee-types"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion subxt/src/events/events_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ mod tests {
/// [`RawEventDetails`] can be annoying to test, because it contains
/// type info in the decoded field Values. Strip that here so that
/// we can compare fields more easily.
#[derive(Debug, PartialEq, Clone)]
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct TestRawEventDetails {
pub phase: Phase,
pub index: u32,
Expand Down

0 comments on commit 52dd640

Please sign in to comment.