Skip to content

Commit

Permalink
Update to new develop branches with rgb-std/275 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 12, 2024
1 parent 4a242d6 commit 1c27e9c
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 54 deletions.
72 changes: 30 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion amplify-nonasync
2 changes: 1 addition & 1 deletion bp-core
2 changes: 1 addition & 1 deletion bp-esplora-client
2 changes: 1 addition & 1 deletion bp-std
2 changes: 1 addition & 1 deletion rgb-schemata
2 changes: 1 addition & 1 deletion tests/transfers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ fn tapret_wlt_receiving_opret() {
TransferType::Blinded,
contract_id,
&iface_type_name,
300,
290,
1000,
None,
);
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ impl TestWallet {
self.sync();
let resolver = self.get_resolver();
let validate_start = Instant::now();
let validated_consignment = consignment.validate(&resolver, self.testnet()).unwrap();
let validated_consignment = consignment.validate(&resolver, self.testnet()).map_err(|(status, _)| status).unwrap();
let validate_duration = validate_start.elapsed();

Check warning on line 863 in tests/utils/helpers.rs

View workflow job for this annotation

GitHub Actions / format

Diff in /home/runner/work/rgb-tests/rgb-tests/tests/utils/helpers.rs

Check warning on line 863 in tests/utils/helpers.rs

View workflow job for this annotation

GitHub Actions / format

Diff in /home/runner/work/rgb-tests/rgb-tests/tests/utils/helpers.rs

Check warning on line 863 in tests/utils/helpers.rs

View workflow job for this annotation

GitHub Actions / format

Diff in /home/runner/work/rgb-tests/rgb-tests/tests/utils/helpers.rs

Check warning on line 863 in tests/utils/helpers.rs

View workflow job for this annotation

GitHub Actions / format

Diff in /home/runner/work/rgb-tests/rgb-tests/tests/utils/helpers.rs
if let Some(report) = report {
report.write_duration(validate_duration);
Expand Down

0 comments on commit 1c27e9c

Please sign in to comment.