Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
tadovas committed Aug 7, 2018
1 parent fd8d61b commit 8610cdf
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 8610cdf

Please sign in to comment.