rename struct field from .Instructions to .Sequences

This commit is contained in:
fiatjaf
2023-09-30 14:31:11 -03:00
parent 212b1c85b1
commit bbc37a4a1d
2 changed files with 10 additions and 10 deletions

View File

@@ -54,7 +54,7 @@ func parseOTSFile(buf Buffer) (*File, error) {
if seqs, err := parseTimestamp(buf); err != nil {
return nil, err
} else {
ts.Instructions = seqs
ts.Sequences = seqs
}
return ts, nil