Skip to content

Commit

Permalink
fix JP review
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesFoundation committed Aug 29, 2024
1 parent b19376a commit fd3d533
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ clap = { version = "4", features = ["cargo"] }
crc = "3"
criterion = { version = "0.4" }
defmt = "0.3"
derive_more = { version = "1.0.0-beta", default-features = false }
derive_more = { version = "1.0", default-features = false }
embedded-io = "0.6"
embedded-io-async = "0.6"
faster-hex = { version = "0.9", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion stratum-v1/src/client/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub struct Request<P> {
///A String containing the name of the method to be invoked
///
///By default is static buffer of 32 bytes.
pub method: String<23>,
pub method: String<32>,
#[serde(skip_serializing_if = "Option::is_none")]
///A Structured value that holds the parameter values to be used during the invocation of the method
pub params: Option<P>,
Expand Down

0 comments on commit fd3d533

Please sign in to comment.