Skip to content

Commit

Permalink
Merge pull request #103 from BitcoinSchema/data-parse
Browse files Browse the repository at this point in the history
fix: data ignoring sequence
  • Loading branch information
mrz1836 committed Jun 19, 2024
2 parents b05f5e0 + 4194fe0 commit e4f1698
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bob.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ func (a *Aip) SetDataFromTapes(tapes []bpu.Tape) {
return
}
// Skip the OPS
if cell.Ops != nil {
// if cell.Ops != nil {
if cell.Op != nil && (*cell.Op == 0 || *cell.Op > 0x4e) {
continue
}
if cell.S != nil {
Expand Down

0 comments on commit e4f1698

Please sign in to comment.