mirror of
https://github.com/status-im/status-go.git
synced 2025-01-21 20:20:29 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
12 lines
100 B
Go
12 lines
100 B
Go
//go:build windows
|
|
|
|
package rcmgr
|
|
|
|
import (
|
|
"math"
|
|
)
|
|
|
|
func getNumFDs() int {
|
|
return math.MaxInt
|
|
}
|