mirror of https://github.com/status-im/nim-eth.git
31 lines
981 B
Nim
31 lines
981 B
Nim
import
|
|
std/strutils,
|
|
chronos, bearssl,
|
|
../../eth/[keys, p2p], ../../eth/p2p/[discovery, enode]
|
|
|
|
var nextPort = 30303
|
|
|
|
proc localAddress*(port: int): Address =
|
|
let port = Port(port)
|
|
result = Address(udpPort: port, tcpPort: port,
|
|
ip: parseIpAddress("127.0.0.1"))
|
|
|
|
proc setupTestNode*(
|
|
rng: ref BrHmacDrbgContext,
|
|
capabilities: varargs[ProtocolInfo, `protocolInfo`]): EthereumNode {.gcsafe.} =
|
|
# Don't create new RNG every time in production code!
|
|
let keys1 = KeyPair.random(rng[])
|
|
result = newEthereumNode(keys1, localAddress(nextPort), NetworkId(1), nil,
|
|
addAllCapabilities = false, rng = rng)
|
|
nextPort.inc
|
|
for capability in capabilities:
|
|
result.addCapability capability
|
|
|
|
template sourceDir*: string = currentSourcePath.rsplit(DirSep, 1)[0]
|
|
|
|
proc recvMsgMock*(msg: openArray[byte]): tuple[msgId: int, msgData: Rlp] =
|
|
var rlp = rlpFromBytes(msg)
|
|
|
|
let msgId = rlp.read(int32)
|
|
return (msgId.int, rlp)
|