Skip to content

Commit

Permalink
fix header version from int to char
Browse files Browse the repository at this point in the history
  • Loading branch information
billettc committed Oct 3, 2023
1 parent 1a3139a commit 67a1e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accountresolver/bundlerreader.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (r *BundleReader) fillBuffer() error {

if !r.headerWritten {
fmt.Println("writing header")
header := []byte{'d', 'b', 'i', 'n', byte(0), 's', 'o', 'l', 0, 1}
header := []byte{'d', 'b', 'i', 'n', byte(0), 's', 'o', 'l', '0', '1'}

r.headerWritten = true
r.readBuffer = append(header, data...)
Expand Down

0 comments on commit 67a1e31

Please sign in to comment.