message-size-increase #3

Open
sashakoshka wants to merge 134 commits from message-size-increase into main
2 changed files with 0 additions and 2 deletions
Showing only changes of commit a05c034313 - Show all commits

View File

@ -129,7 +129,6 @@ func EncodeGBEU[T UInt] (buffer []byte, value T) (error) {
chunk := uint8(value >> window) & 0x7F
if window > 0 {
chunk |= 0x80
} else {
}
buffer[index] = chunk

View File

@ -174,7 +174,6 @@ func TestGBEU(test *testing.T) {
test.Fatalf("not equal: %x", got)
}
for _ = range largeNumberNTestRounds {
buffer = [16]byte { }
number := uint64(rand.Int())