From 6e17bdce71e8a23683c73c69d36d0905fcffcf2b Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 10 May 2023 20:24:09 +0800 Subject: [PATCH] [fix] neo command request bug --- neo/command/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/command/request.go b/neo/command/request.go index aa721fd5..a2b1303b 100644 --- a/neo/command/request.go +++ b/neo/command/request.go @@ -80,7 +80,7 @@ func (req *Request) Run(messages []map[string]interface{}, cb func(msg *message. } // DONE - cb(req.msg().Done()) + cb(msg.Done()) return nil }