Skip to content

Commit

Permalink
Fix CI (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-yu committed Oct 17, 2023
1 parent c6b3409 commit 7d8c3a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
os:
- macos-latest
- ubuntu-latest
- windows-latest

runs-on: ${{matrix.os}}

Expand Down
4 changes: 3 additions & 1 deletion src/inscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ impl Inscription {
pub(crate) fn from_transaction(tx: &Transaction) -> Vec<TransactionInscription> {
let mut result = Vec::new();
for (index, tx_in) in tx.input.iter().enumerate() {
let Ok(inscriptions) = InscriptionParser::parse(&tx_in.witness) else { continue };
let Ok(inscriptions) = InscriptionParser::parse(&tx_in.witness) else {
continue;
};

result.extend(
inscriptions
Expand Down

0 comments on commit 7d8c3a8

Please sign in to comment.