Skip to content

Commit

Permalink
Merge pull request #39 from mit-pdos/goose-byte-conv
Browse files Browse the repository at this point in the history
goose doesn't convert uint64 to bytes properly
  • Loading branch information
sanjit-bhat authored Nov 10, 2024
2 parents f3927f4 + 6394f3d commit c121af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kt/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ type alice struct {
func (a *alice) run() {
for i := uint64(0); i < uint64(20); i++ {
primitive.Sleep(5_000_000)
pk := []byte{byte(i)}
pk := []byte{1}
epoch, err0 := a.cli.Put(pk)
primitive.Assume(!err0.err)
a.hist = append(a.hist, &HistEntry{Epoch: epoch, HistVal: pk})
Expand Down

0 comments on commit c121af7

Please sign in to comment.