From 49cdfe5dc3e8665bf8ccc1b42156f932f85f0ea2 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 22 Feb 2022 16:13:47 +0800 Subject: [PATCH] 1 --- doc/Market.py | 1 + webapp/controller/MarketController.class.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/doc/Market.py b/doc/Market.py index 6521205c..40607b03 100644 --- a/doc/Market.py +++ b/doc/Market.py @@ -27,6 +27,7 @@ class Market(object): 'url': 'webapp/index.php?c=Market&a=auth', 'params': [ ['account', '', '钱包账号'], + ['tips', '', 'tips'], ['nonce', '', 'nonce'], ['signature', '', '签名'], ['net_id', '', '网络id'], diff --git a/webapp/controller/MarketController.class.php b/webapp/controller/MarketController.class.php index 89fddd4a..a3ec62b9 100644 --- a/webapp/controller/MarketController.class.php +++ b/webapp/controller/MarketController.class.php @@ -469,11 +469,13 @@ class MarketController extends BaseController { public function auth() { $account = getReqVal('account', ''); + $tips = getReqVal('tips', '') ; $nonce = getReqVal('nonce', ''); $signature = getReqVal('signature', ''); $params = array( 'c' => 'BcService', 'a' => 'authVerifySignature', + 'tips' => $tips, 'nonce' => $nonce, 'signature' => $signature );