From dd171c7ebfa892fc02677d50c156497baeaa3290 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 24 Aug 2023 19:12:21 +0800 Subject: [PATCH] 1 --- webapp/controller/StakingController.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/controller/StakingController.class.php b/webapp/controller/StakingController.class.php index 6c72e738..b88cfa17 100644 --- a/webapp/controller/StakingController.class.php +++ b/webapp/controller/StakingController.class.php @@ -94,7 +94,7 @@ class StackingController extends BaseAuthedController { $items = array(); $rows = Stacking::all(myself()->_getAddress()); foreach ($rows as $row) { - if ($row['status'] == Stacking::UNSTAKE_STATUS) { + if ($row['status'] == Stacking::STAKING_STATUS) { $info = array(); $info['token_id'] = $row['token_id']; $info['token_type'] = $row['token_type'];