Skip to content

Commit e4f1698

Browse files
authored
Merge pull request #103 from BitcoinSchema/data-parse
fix: data ignoring sequence
2 parents b05f5e0 + 4194fe0 commit e4f1698

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bob.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ func (a *Aip) SetDataFromTapes(tapes []bpu.Tape) {
105105
return
106106
}
107107
// Skip the OPS
108-
if cell.Ops != nil {
108+
// if cell.Ops != nil {
109+
if cell.Op != nil && (*cell.Op == 0 || *cell.Op > 0x4e) {
109110
continue
110111
}
111112
if cell.S != nil {

0 commit comments

Comments
 (0)