Skip to content

Commit

Permalink
rearrange imports
Browse files Browse the repository at this point in the history
  • Loading branch information
torao committed Nov 24, 2022
1 parent 42fcf13 commit f690d36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion p2p/switch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"errors"
"fmt"
net2 "github.com/line/ostracon/libs/net"
"io/ioutil"
"net"
"net/http/httptest"
Expand All @@ -21,6 +20,7 @@ import (
"github.com/line/ostracon/config"
"github.com/line/ostracon/crypto/ed25519"
"github.com/line/ostracon/libs/log"
net2 "github.com/line/ostracon/libs/net"
tmsync "github.com/line/ostracon/libs/sync"
"github.com/line/ostracon/p2p/conn"
)
Expand Down
3 changes: 2 additions & 1 deletion p2p/upnp/upnp.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ import (
"encoding/xml"
"errors"
"fmt"
net2 "github.com/line/ostracon/libs/net"
"io/ioutil"
"net"
"net/http"
"strconv"
"strings"
"time"

net2 "github.com/line/ostracon/libs/net"
)

const HttpRequestTimeout = 30 * time.Second
Expand Down

0 comments on commit f690d36

Please sign in to comment.