From e145ec4f72020c01083d93066210687b0633dd74 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 28 Aug 2023 17:45:42 +0800 Subject: [PATCH] 1 --- webapp/controller/StakingController.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webapp/controller/StakingController.class.php b/webapp/controller/StakingController.class.php index f1b3dee1..80bcea58 100644 --- a/webapp/controller/StakingController.class.php +++ b/webapp/controller/StakingController.class.php @@ -192,7 +192,7 @@ class StakingController extends BaseAuthedController { array_push( $items, array( - 'time' => $days, + 'time' => $days * 30, 'interest' => 1 ) ); @@ -203,7 +203,7 @@ class StakingController extends BaseAuthedController { array_push( $items, array( - 'time' => $days, + 'time' => $days * 30, 'interest' => 5 ) ); @@ -214,7 +214,7 @@ class StakingController extends BaseAuthedController { array_push( $items, array( - 'time' => $days, + 'time' => $days * 30, 'interest' => 15 ) ); @@ -225,7 +225,7 @@ class StakingController extends BaseAuthedController { array_push( $items, array( - 'time' => $days, + 'time' => $days * 30, 'interest' => 40 ) ); @@ -236,7 +236,7 @@ class StakingController extends BaseAuthedController { array_push( $items, array( - 'time' => $days, + 'time' => $days * 30, 'interest' => 100 ) );