update port range

This commit is contained in:
Eric 2024-10-23 18:54:44 +11:00
parent b12ed2a1de
commit f8c196843d
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ type MockRpcHttpServer* = ref object
srv: RpcHttpServer
proc new*(_: type MockRpcHttpServer): MockRpcHttpServer =
let port = rand(65000..<66000)
let port = rand(49152..65535)
let srv = newRpcHttpServer(["127.0.0.1:" & $port])
let filters = initTable[string, bool]()
MockRpcHttpServer(filters: filters, newFilterCounter: 0, srv: srv)