merge develop into master #21

Merged
JakeHillion merged 149 commits from develop into master 2021-05-12 00:22:59 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 9a19ecd0d4 - Show all commits

View File

@ -89,7 +89,7 @@ func (n *newRenoTest) RunSideA(ctx context.Context) {
go func() {
for {
seq, err := n.sideA.AwaitEarlyUpdate(ctx, 500 * time.Millisecond)
seq, err := n.sideA.AwaitEarlyUpdate(ctx, 500*time.Millisecond)
if err != nil {
return
}
@ -122,7 +122,7 @@ func (n *newRenoTest) RunSideB(ctx context.Context) {
go func() {
for {
seq, err := n.sideB.AwaitEarlyUpdate(ctx, 500 * time.Millisecond)
seq, err := n.sideB.AwaitEarlyUpdate(ctx, 500*time.Millisecond)
if err != nil {
return
}

View File

@ -6,7 +6,7 @@ import (
"time"
)
type None struct {}
type None struct{}
func NewNone() None {
return None{}