Skip to content

Commit

Permalink
Merge pull request #8 from MysteriumNetwork/hotfix/compilation-error
Browse files Browse the repository at this point in the history
Fix compilation error
  • Loading branch information
tadovas authored Aug 7, 2018
2 parents fd8d61b + 8610cdf commit 6fd859d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cli/payments/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ import (

var paymentsContract = flag.String("payments.contract", "", "Address of payments contract")
var identity = flag.String("payments.identity", "", "Identity for balance checking")
var gethUrl = flag.String("geth.url", "", "URL value of started geth to connect")

func main() {
flag.Parse()

client, syncCompleted, err := helpers.LookupBackend()
client, syncCompleted, err := helpers.LookupBackend(*gethUrl)
checkError(err)
<-syncCompleted

Expand Down
1 change: 0 additions & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash
set -e

source scripts/helpers/output.sh

Expand Down

0 comments on commit 6fd859d

Please sign in to comment.