Skip to content

Commit 0172dbd

Browse files
authored
Merge pull request #34 from gomaja/make-filler-f
refactor: makes the filler character "f"
2 parents 378522d + fdd9c8c commit 0172dbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
// BCDEncode encodes a string into BCD-encoded bytes.
1313
func BCDEncode(s string) ([]byte, error) {
14-
return StrToSwappedBytes(s, "0")
14+
return StrToSwappedBytes(s, "f")
1515
}
1616

1717
// MustBCDEncode is the same as BCDEncode but panics if any error occurs.

0 commit comments

Comments
 (0)