Skip to content

Commit

Permalink
cmd/puppeth: fix unconvert linters
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Nov 21, 2017
1 parent 7f40ae7 commit b169a30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/puppeth/module_explorer.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func deployExplorer(client *sshClient, network string, chainspec []byte, config
})
files[filepath.Join(workdir, "docker-compose.yaml")] = composefile.Bytes()

files[filepath.Join(workdir, "chain.json")] = []byte(chainspec)
files[filepath.Join(workdir, "chain.json")] = chainspec

// Upload the deployment files to the remote server (and clean up afterwards)
if out, err := client.Upload(files); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/puppeth/module_wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func deployWallet(client *sshClient, network string, bootnodes []string, config
})
files[filepath.Join(workdir, "docker-compose.yaml")] = composefile.Bytes()

files[filepath.Join(workdir, "genesis.json")] = []byte(config.genesis)
files[filepath.Join(workdir, "genesis.json")] = config.genesis

// Upload the deployment files to the remote server (and clean up afterwards)
if out, err := client.Upload(files); err != nil {
Expand Down

0 comments on commit b169a30

Please sign in to comment.