From 30a4853e7447e62bec604b24cc455a0f3af2385a Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 4 Aug 2022 15:35:18 -0400 Subject: [PATCH] fixup --- proxy/multi_app_conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/multi_app_conn.go b/proxy/multi_app_conn.go index 66d238388..37a5c166e 100644 --- a/proxy/multi_app_conn.go +++ b/proxy/multi_app_conn.go @@ -32,7 +32,7 @@ type AppConns interface { } // NewAppConns calls NewMultiAppConn. -func NewAppConns(clientCreator abciclient.Creator, metrics *Metrics) AppConns { +func NewAppConns(clientCreator ClientCreator, metrics *Metrics) AppConns { return NewMultiAppConn(clientCreator, metrics) }