Skip to content

Commit

Permalink
fix linter suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmenendez committed Apr 18, 2024
1 parent fcb5621 commit c3ac49e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/census3/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"github.com/spf13/viper"
"github.com/vocdoni/census3/api"
"github.com/vocdoni/census3/db"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/internal"
"github.com/vocdoni/census3/scanner"
"github.com/vocdoni/census3/scanner/providers/farcaster"
Expand All @@ -23,7 +24,6 @@ import (
"github.com/vocdoni/census3/scanner/providers/manager"
"github.com/vocdoni/census3/scanner/providers/poap"
web3provider "github.com/vocdoni/census3/scanner/providers/web3"
"github.com/vocdoni/census3/helpers/web3"
"go.vocdoni.io/dvote/log"
)

Expand Down
2 changes: 1 addition & 1 deletion scanner/providers/web3/erc20_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/ethereum/go-ethereum/common"
erc20 "github.com/vocdoni/census3/contracts/erc/erc20"
"github.com/vocdoni/census3/scanner/providers"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/scanner/providers"
"go.vocdoni.io/dvote/log"
)

Expand Down
2 changes: 1 addition & 1 deletion scanner/providers/web3/erc721_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/ethereum/go-ethereum/common"
erc721 "github.com/vocdoni/census3/contracts/erc/erc721"
"github.com/vocdoni/census3/scanner/providers"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/scanner/providers"
"go.vocdoni.io/dvote/log"
)

Expand Down
2 changes: 1 addition & 1 deletion scanner/providers/web3/erc777_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/ethereum/go-ethereum/common"
erc777 "github.com/vocdoni/census3/contracts/erc/erc777"
"github.com/vocdoni/census3/scanner/providers"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/scanner/providers"
"go.vocdoni.io/dvote/log"
)

Expand Down
2 changes: 1 addition & 1 deletion scanner/providers/web3/web3_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/vocdoni/census3/scanner/providers"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/scanner/providers"
"go.vocdoni.io/dvote/db"
"go.vocdoni.io/dvote/log"
)
Expand Down
2 changes: 1 addition & 1 deletion scanner/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import (
"github.com/vocdoni/census3/db"
"github.com/vocdoni/census3/db/annotations"
queries "github.com/vocdoni/census3/db/sqlc"
"github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/census3/scanner/providers/manager"
web3provider "github.com/vocdoni/census3/scanner/providers/web3"
"github.com/vocdoni/census3/helpers/web3"
"go.vocdoni.io/dvote/log"
)

Expand Down

0 comments on commit c3ac49e

Please sign in to comment.