Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang committed Jan 14, 2025
1 parent 673f84d commit 6b30db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/src/bin/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ fn decode_u2() -> (u32, u32) {
#[update(manual_reply = true)]
fn u_manual_reply() -> PhantomData<u32> {
let v: u32 = 1;
let reply_bytes = candid::encode_one(&v).unwrap();
ic_cdk::api::msg_reply(&reply_bytes);
let reply_bytes = candid::encode_one(v).unwrap();
ic_cdk::api::msg_reply(reply_bytes);
PhantomData
}

Expand Down

0 comments on commit 6b30db8

Please sign in to comment.