Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
KaoImin committed Dec 18, 2023
1 parent c2fd683 commit 836f105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/executor/src/precompiles/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ fn test_verify_cmbt_proof() {
proof: witness_proof,
};

let input = AbiEncode::encode(raw_tx_payload);
let input = AbiEncode::encode((raw_tx_payload,));
let output = vec![1u8];
test_precompile!(CMBTVerify, &input, output, 56000);

let input = AbiEncode::encode(witness_payload);
let input = AbiEncode::encode((witness_payload,));
let output = vec![1u8];
test_precompile!(CMBTVerify, &input, output, 56000);
}

0 comments on commit 836f105

Please sign in to comment.