From f813e550c2d4b3683a3c0ac9800fcab68771bd71 Mon Sep 17 00:00:00 2001 From: frank Date: Tue, 10 Sep 2024 17:34:34 +0800 Subject: [PATCH] fix_: lint issue --- mobile/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/status.go b/mobile/status.go index 134937c3571..ab97b52fd74 100644 --- a/mobile/status.go +++ b/mobile/status.go @@ -292,7 +292,7 @@ func logAndCallString(method string, params interface{}, rpcFunc func() string) } func logAndCallVoid(method string, params interface{}, rpcFunc func()) { - logAndCall(method, params, func() (interface{}, error) { + _, _ = logAndCall(method, params, func() (interface{}, error) { rpcFunc() return nil, nil })