Skip to content

Commit

Permalink
update e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
bitzoic committed Aug 15, 2024
1 parent b6102e7 commit 1e10662
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::tx::*;

fn main() -> u64 {
assert(tx_witnesses_count() == 3);
assert(tx_witness_data::<u8>(1) == 1);
assert(tx_witness_data::<u64>(2) == 1234);
assert(tx_witness_data::<u8>(1).unwrap() == 1);
assert(tx_witness_data::<u64>(2).unwrap(0) == 1234);
0
}

0 comments on commit 1e10662

Please sign in to comment.