Skip to content

Commit

Permalink
specify parse type for windows build (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelvanderwaal authored May 8, 2023
1 parent ea566e4 commit 051758f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process_subcommands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ pub fn process_decode(client: &RpcClient, commands: DecodeSubcommands) -> Result
.trim_end_matches(']')
.split(',')
.map(|c| {
c.parse()
c.parse::<u8>()
.unwrap_or_else(|_| panic!("failed to parse {}", c))
})
.collect();
Expand Down

0 comments on commit 051758f

Please sign in to comment.