Commit f6ea9c56 authored by 万继龙's avatar 万继龙

Merge branch 'develop' into 'test'

add: 修复类异常bug

See merge request bp/pay!19
parents f78d44bf 2de47dc9
......@@ -41,7 +41,7 @@ class Sdk {
]
*/
$isTrace = Application::app()->getConfig()->get('trace.open');
$isTrace = \Yaf\Application::app()->getConfig()->get('trace.open');
if($isTrace != false) {
FileLog::info('sdk api:', ['traceId'=>Tracer::getTraceId(), 'url'=>$url, 'req'=>$params, 'res'=>$data]);
}
......
......@@ -14,7 +14,7 @@ class Wallet implements DaemonServiceInterface
public function run()
{
$where['can_notify_account'] = 1;
$where['notify_account_times[<]'] = 5;
$where['notify_account_times[<]'] = 10;
$start = date('Y-m-d', time() - 2 * 86400);
$end = date('Y-m-d', time());
$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