VDB-327 Constantinople prep (#135)

* Bump geth to 1.8.20 for Constantinople

* Fix conflicting import/toml source for logrus
This commit is contained in:
Edvard Hübinette
2019-01-14 11:31:28 +01:00
committed by GitHub
parent 5efd683c54
commit d41209d293
235 changed files with 11114 additions and 7199 deletions
+14
View File
@@ -0,0 +1,14 @@
package bigcache
import "time"
type clock interface {
epoch() int64
}
type systemClock struct {
}
func (c systemClock) epoch() int64 {
return time.Now().Unix()
}