Skip to content

Commit

Permalink
test-wallet: deal with execution-core changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leegwater Simões committed Jul 3, 2024
1 parent 8e5e12d commit ef017ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-wallet/src/imp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,11 @@ fn new_unproven_tx<Rng: RngCore + CryptoRng, SC: StateClient>(
deposit,
};

let payload = Payload::new(tx_skeleton, fee, call);
let payload = Payload {
tx_skeleton,
fee,
contract_call: call,
};
let payload_hash = payload.hash();

let inputs: Vec<UnprovenTransactionInput> = inputs
Expand Down

0 comments on commit ef017ad

Please sign in to comment.