From 069f460e167fb8c39236c71c8400ba1222e9c879 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 19 Oct 2022 10:48:33 -0400 Subject: [PATCH] add type to channel description --- p2p/conn/connection.go | 1 + 1 file changed, 1 insertion(+) diff --git a/p2p/conn/connection.go b/p2p/conn/connection.go index f52fe73f7..9e38e55f5 100644 --- a/p2p/conn/connection.go +++ b/p2p/conn/connection.go @@ -724,6 +724,7 @@ type ChannelDescriptor struct { SendQueueCapacity int RecvBufferCapacity int RecvMessageCapacity int + MessageType reflect.Type } func (chDesc ChannelDescriptor) FillDefaults() (filled ChannelDescriptor) {