Skip to content

Commit

Permalink
Fix typo + import
Browse files Browse the repository at this point in the history
  • Loading branch information
helius-kurt committed May 8, 2024
1 parent 944ee93 commit 5b18882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"strconv"
"syscall"
"time"
"strings"

"github.com/coreos/go-iptables/iptables"
"github.com/davecgh/go-spew/spew"
Expand All @@ -33,7 +34,7 @@ type PeerNode struct {
type trustedProviders []string

func (i *trustedProviders) String() string {
return strings.Join(string, ",")
return strings.Join(*i, ",")
}

func (i *trustedProviders) Set(value string) error {
Expand Down
Binary file modified tpu-traffic-classifier
Binary file not shown.

0 comments on commit 5b18882

Please sign in to comment.