mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
2f539d3bd2
Go ens needs to be updated to be compatible with the lastest geth version
12 lines
151 B
Go
12 lines
151 B
Go
// +build appengine windows
|
|
|
|
package fastcache
|
|
|
|
func getChunk() []byte {
|
|
return make([]byte, chunkSize)
|
|
}
|
|
|
|
func putChunk(chunk []byte) {
|
|
// No-op.
|
|
}
|