aboutsummaryrefslogtreecommitdiffstats
path: root/common/bytes.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/bytes.go')
-rw-r--r--common/bytes.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/bytes.go b/common/bytes.go
index 0342083a1..c445968f2 100644
--- a/common/bytes.go
+++ b/common/bytes.go
@@ -89,18 +89,18 @@ func Hex2BytesFixed(str string, flen int) []byte {
}
func RightPadBytes(slice []byte, l int) []byte {
- if l < len(slice) {
+ if l <= len(slice) {
return slice
}
padded := make([]byte, l)
- copy(padded[0:len(slice)], slice)
+ copy(padded, slice)
return padded
}
func LeftPadBytes(slice []byte, l int) []byte {
- if l < len(slice) {
+ if l <= len(slice) {
return slice
}