diff --git a/aeternity/helpers.go b/aeternity/helpers.go index 6a79a4b3..c9625b3c 100644 --- a/aeternity/helpers.go +++ b/aeternity/helpers.go @@ -120,8 +120,8 @@ type Context struct { // NewContextFromURL is a convenience function that associates a Node with a // Helper struct for you. -func NewContextFromURL(url string, address string) Context { - h := Helpers{Node: NewNode(url, false)} +func NewContextFromURL(url string, address string, debug bool) Context { + h := Helpers{Node: NewNode(url, debug)} return Context{Helpers: h, Address: address} }