aboutsummaryrefslogtreecommitdiff
path: root/provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'provider.go')
-rw-r--r--provider.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/provider.go b/provider.go
index a8e43c5..989f871 100644
--- a/provider.go
+++ b/provider.go
@@ -53,7 +53,7 @@ func (p Provider) Nonce() (string, error) {
select {
case nonce := <-p.nonces:
return nonce, nil
- case <-time.After(time.Second):
+ case <-time.After(5 * time.Second):
return "", errNoNonces
}
}