Commit 2de47dc9 authored by wanjilong's avatar wanjilong

add: 修复类异常bug

parent b00132af
...@@ -41,7 +41,7 @@ class Sdk { ...@@ -41,7 +41,7 @@ class Sdk {
] ]
*/ */
$isTrace = Application::app()->getConfig()->get('trace.open'); $isTrace = \Yaf\Application::app()->getConfig()->get('trace.open');
if($isTrace != false) { if($isTrace != false) {
FileLog::info('sdk api:', ['traceId'=>Tracer::getTraceId(), 'url'=>$url, 'req'=>$params, 'res'=>$data]); FileLog::info('sdk api:', ['traceId'=>Tracer::getTraceId(), 'url'=>$url, 'req'=>$params, 'res'=>$data]);
} }
......
...@@ -14,7 +14,7 @@ class Wallet implements DaemonServiceInterface ...@@ -14,7 +14,7 @@ class Wallet implements DaemonServiceInterface
public function run() public function run()
{ {
$where['can_notify_account'] = 1; $where['can_notify_account'] = 1;
$where['notify_account_times[<]'] = 5; $where['notify_account_times[<]'] = 10;
$start = date('Y-m-d', time() - 2 * 86400); $start = date('Y-m-d', time() - 2 * 86400);
$end = date('Y-m-d', time()); $end = date('Y-m-d', time());
$where['can_notify_account_time[<>]'] = [$start, $end]; $where['can_notify_account_time[<>]'] = [$start, $end];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment