mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
2f539d3bd2
Go ens needs to be updated to be compatible with the lastest geth version
12 lines
179 B
Go
12 lines
179 B
Go
// +build !go1.12
|
|
|
|
package memsize
|
|
|
|
import "reflect"
|
|
|
|
func iterateMap(m reflect.Value, fn func(k, v reflect.Value)) {
|
|
for _, k := range m.MapKeys() {
|
|
fn(k, m.MapIndex(k))
|
|
}
|
|
}
|