This commit is contained in:
aozhiwei 2024-08-06 15:12:50 +08:00
parent ab02301b32
commit bff4607081

View File

@ -2,6 +2,10 @@
use phpcommon\SqlHelper;
require_once("models/Staking.php");
use models\Staking;
class TempToolsController extends BaseController {
public function _handlePre()
@ -350,7 +354,10 @@ class TempToolsController extends BaseController {
public function exportStaking()
{
$userHash = Stacking::exportStatData();
foreach ($userHash as $key => $val) {
echo $key . ',' . $val . "\n";
}
}
}