Skip to content

Commit

Permalink
removed .into()
Browse files Browse the repository at this point in the history
  • Loading branch information
mqxf committed Sep 18, 2023
1 parent 4ae2773 commit 2f84a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gsdk/tests/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ async fn test_calculate_reply_gas() -> Result<()> {
let salt = vec![];

let pid = ProgramId::generate_from_user(CodeId::generate(demo_waiter::WASM_BINARY), &salt);
let payload = demo_waiter::Command::SendUpTo(alice.into(), 10);
let payload = demo_waiter::Command::SendUpTo(alice, 10);

// 1. upload program.
let signer = Api::new(Some(&node_uri(&node)))
Expand Down

0 comments on commit 2f84a66

Please sign in to comment.