Skip to content

Commit

Permalink
tapret_wlt_receiving_opret: de-ignore and improve to show bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zoedberg committed Sep 26, 2024
1 parent b5d6f21 commit 19b79ff
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion tests/transfers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,6 @@ fn mainnet_wlt_receiving_test_asset() {
}

#[test]
#[ignore = "this was working, fix needed"]
fn tapret_wlt_receiving_opret() {
initialize();

Expand Down Expand Up @@ -776,4 +775,24 @@ fn tapret_wlt_receiving_opret() {
1000,
None,
);

println!("4th transfer");
wlt_2.send(

Check failure on line 780 in tests/transfers.rs

View workflow job for this annotation

GitHub Actions / lint

this method takes 7 arguments but 6 arguments were supplied

Check failure on line 780 in tests/transfers.rs

View workflow job for this annotation

GitHub Actions / test_and_coverage

this method takes 7 arguments but 6 arguments were supplied
&mut wlt_1,
TransferType::Blinded,
contract_id,
&iface_type_name,
560,
1000,
);

println!("5th transfer");
wlt_1.send(

Check failure on line 790 in tests/transfers.rs

View workflow job for this annotation

GitHub Actions / lint

this method takes 7 arguments but 6 arguments were supplied

Check failure on line 790 in tests/transfers.rs

View workflow job for this annotation

GitHub Actions / test_and_coverage

this method takes 7 arguments but 6 arguments were supplied
&mut wlt_2,
TransferType::Blinded,
contract_id,
&iface_type_name,
600,
1000,
);
}

0 comments on commit 19b79ff

Please sign in to comment.