From b6416adaaee32f7300e740f3ef94a82bcc769aaa Mon Sep 17 00:00:00 2001 From: sian Date: Wed, 12 Oct 2022 16:32:51 +0800 Subject: [PATCH] bug fix --- supply/order.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supply/order.go b/supply/order.go index ca669d2..85e9165 100644 --- a/supply/order.go +++ b/supply/order.go @@ -39,7 +39,7 @@ func (o *order) Split(ctx context.Context, args ArgsOrderSplit) (err error) { return } reply := 0 - err = xClient.Call(ctx, "Lists", args, &reply) + err = xClient.Call(ctx, "Split", args, &reply) return }