Skip to content

Commit

Permalink
Fix pkg names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim committed Jun 12, 2019
1 parent 3ddd3f0 commit 0b1d8e1
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion executor/exec_target.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/ethereum/go-ethereum/common"
log "github.com/sirupsen/logrus"

"github.com/AtlantPlatform/ethereum-playbook/model"
)
Expand Down
2 changes: 1 addition & 1 deletion executor/exec_write.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"strings"

"github.com/AtlantPlatform/ethfw"
log "github.com/Sirupsen/logrus"
ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
log "github.com/sirupsen/logrus"

"github.com/AtlantPlatform/ethereum-playbook/model"
)
Expand Down
2 changes: 1 addition & 1 deletion executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"math/big"

"github.com/AtlantPlatform/ethfw"
log "github.com/Sirupsen/logrus"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/rpc"
log "github.com/sirupsen/logrus"

"github.com/AtlantPlatform/ethereum-playbook/model"
)
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import (

"github.com/AtlantPlatform/ethfw"
"github.com/AtlantPlatform/ethfw/sol"
log "github.com/Sirupsen/logrus"
cli "github.com/jawher/mow.cli"
log "github.com/sirupsen/logrus"
yaml "github.com/xlab/yamlx"

"github.com/AtlantPlatform/ethereum-playbook/executor"
"github.com/AtlantPlatform/ethereum-playbook/model"
"github.com/AtlantPlatform/yaml"
)

var app = cli.App("ethereum-playbook", "Ethereum contracts deployment and management tool.")
Expand Down
2 changes: 1 addition & 1 deletion model/cmds_call.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package model
import (
"regexp"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type CallCmds map[string]*CallCmdSpec
Expand Down
2 changes: 1 addition & 1 deletion model/cmds_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type ViewCmds map[string]*ViewCmdSpec
Expand Down
2 changes: 1 addition & 1 deletion model/cmds_write.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type WriteCmds map[string]*WriteCmdSpec
Expand Down
2 changes: 1 addition & 1 deletion model/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/AtlantPlatform/ethfw"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type ConfigSpec struct {
Expand Down
2 changes: 1 addition & 1 deletion model/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/AtlantPlatform/ethfw"
"github.com/AtlantPlatform/ethfw/sol"
log "github.com/Sirupsen/logrus"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
log "github.com/sirupsen/logrus"
)

type Contracts map[string]*ContractSpec
Expand Down
2 changes: 1 addition & 1 deletion model/inventory.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package model

import (
log "github.com/Sirupsen/logrus"
"github.com/ethereum/go-ethereum/rpc"
log "github.com/sirupsen/logrus"
)

type Inventory map[string]InventorySpec
Expand Down
2 changes: 1 addition & 1 deletion model/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strconv"
"strings"

log "github.com/Sirupsen/logrus"
"github.com/ethereum/go-ethereum/common"
log "github.com/sirupsen/logrus"
)

type ParamSpec struct {
Expand Down
2 changes: 1 addition & 1 deletion model/spec.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package model

import log "github.com/Sirupsen/logrus"
import log "github.com/sirupsen/logrus"

type Spec struct {
Config *ConfigSpec `yaml:"CONFIG"`
Expand Down
2 changes: 1 addition & 1 deletion model/targets.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package model
import (
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type Targets map[string]TargetSpec
Expand Down
2 changes: 1 addition & 1 deletion model/wallets.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"sort"
"strings"

log "github.com/Sirupsen/logrus"
"github.com/serialx/hashring"
log "github.com/sirupsen/logrus"

"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
Expand Down

0 comments on commit 0b1d8e1

Please sign in to comment.