Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #26

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix CI
  • Loading branch information
mi-yu committed Oct 17, 2023
commit d4e9d400fea3c6440faf3aa203184f48dc6b14f9
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
Loading