aboutsummaryrefslogtreecommitdiff
path: root/provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'provider.go')
-rw-r--r--provider.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/provider.go b/provider.go
index 413b828..cf54aa4 100644
--- a/provider.go
+++ b/provider.go
@@ -16,7 +16,6 @@ type Provider struct {
Directory
nonces chan string
http.Client
- dir string
}
var (
@@ -50,7 +49,6 @@ func NewProvider(directory string) (*Provider, error) {
Client: http.Client{
Timeout: time.Duration(5 * time.Second),
},
- dir: directory,
}
return p, p.getJson(directory, &p.Directory)
}