Skip to content

Commit

Permalink
delete unnecessary .into()
Browse files Browse the repository at this point in the history
  • Loading branch information
ClankPan committed Sep 11, 2024
1 parent d65ff0a commit a6e8bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/sns/make_commit_proposed_batch_proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub fn exec(

let commit_proposed_batch_arguments = CommitProposedBatchArguments {
batch_id,
evidence: hex::decode(evidence)?.into(),
evidence: hex::decode(evidence)?,
};
let payload: Vec<u8> = candid::Encode!(&commit_proposed_batch_arguments)?;

Expand Down

0 comments on commit a6e8bc0

Please sign in to comment.