Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
49cf0d1b
Commit
49cf0d1b
authored
Sep 08, 2019
by
shajiaming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整获取数量
parent
f8c129cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
CrossChainController.php
console/controllers/CrossChainController.php
+2
-2
No files found.
console/controllers/CrossChainController.php
View file @
49cf0d1b
...
@@ -16,7 +16,7 @@ class CrossChainController extends Controller
...
@@ -16,7 +16,7 @@ class CrossChainController extends Controller
*/
*/
public
function
actionAutoTransfer
(
$step
,
$is_with_draw
)
public
function
actionAutoTransfer
(
$step
,
$is_with_draw
)
{
{
$model
=
CoinCrossChain
::
find
()
->
where
([
'send_result'
=>
"0"
,
'step'
=>
(
int
)
$step
,
'is_with_draw'
=>
(
int
)
$is_with_draw
])
->
limit
(
20
)
->
asArray
()
->
all
();
$model
=
CoinCrossChain
::
find
()
->
where
([
'send_result'
=>
"0"
,
'step'
=>
(
int
)
$step
,
'is_with_draw'
=>
(
int
)
$is_with_draw
])
->
asArray
()
->
all
();
if
(
empty
(
$model
))
{
if
(
empty
(
$model
))
{
echo
date
(
'Y-m-d H:i:s'
)
.
' STEP: '
.
$step
.
'暂无跨链交易计划'
.
PHP_EOL
;
echo
date
(
'Y-m-d H:i:s'
)
.
' STEP: '
.
$step
.
'暂无跨链交易计划'
.
PHP_EOL
;
return
0
;
return
0
;
...
@@ -74,7 +74,7 @@ class CrossChainController extends Controller
...
@@ -74,7 +74,7 @@ class CrossChainController extends Controller
public
function
actionQueryTransaction
()
public
function
actionQueryTransaction
()
{
{
$redis
=
Yii
::
$app
->
redis
;
$redis
=
Yii
::
$app
->
redis
;
$model
=
CoinCrossChain
::
find
()
->
where
([
'<>'
,
'send_result'
,
'0'
])
->
andWhere
([
'msg'
=>
'0'
])
->
limit
(
20
)
->
asArray
()
->
all
();
$model
=
CoinCrossChain
::
find
()
->
where
([
'<>'
,
'send_result'
,
'0'
])
->
andWhere
([
'msg'
=>
'0'
])
->
asArray
()
->
all
();
if
(
empty
(
$model
))
{
if
(
empty
(
$model
))
{
echo
date
(
'Y-m-d H:i:s'
)
.
'暂无跨链交易计划'
.
PHP_EOL
;
echo
date
(
'Y-m-d H:i:s'
)
.
'暂无跨链交易计划'
.
PHP_EOL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment