Support types with custom RLP serialization in param positions

This commit is contained in:
Zahary Karadjov 2019-03-13 23:22:14 +02:00
parent 1481c824fa
commit f15cbbae90
1 changed files with 2 additions and 2 deletions

View File

@ -576,7 +576,6 @@ macro p2pProtocolImpl(name: static[string],
# Int = bindSym "int"
Int = ident "int"
Peer = bindSym "Peer"
append = bindSym "append"
createNetworkState = bindSym "createNetworkState"
createPeerState = bindSym "createPeerState"
finish = bindSym "finish"
@ -585,7 +584,8 @@ macro p2pProtocolImpl(name: static[string],
messagePrinter = bindSym "messagePrinter"
initProtocol = bindSym "initProtocol"
nextMsgResolver = bindSym "nextMsgResolver"
read = bindSym "read"
append = bindSym("append", brForceOpen)
read = bindSym("read", brForceOpen)
registerRequest = bindSym "registerRequest"
requestResolver = bindSym "requestResolver"
resolveResponseFuture = bindSym "resolveResponseFuture"