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
8a887e6f
Commit
8a887e6f
authored
Jul 26, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
memo接口调整
parent
a9d677a9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
TradeController.php
api/controllers/TradeController.php
+9
-9
No files found.
api/controllers/TradeController.php
View file @
8a887e6f
...
...
@@ -49,7 +49,7 @@ class TradeController extends BaseController
return
[
'code'
=>
1
,
'data'
=>
[],
'msg'
=>
'记录不存在'
];
}
CoinHashMemo
::
updateAll
([
'memo'
=>
$memo
],
'hash = :hash'
,
[
':hash'
=>
$hash
]);
CoinHashMemo
::
updateAll
([
'memo'
=>
$memo
],
'hash = :hash'
,
[
':hash'
=>
$hash
]);
return
[
'code'
=>
0
,
'data'
=>
[],
'msg'
=>
'本地备注更新成功'
];
}
...
...
@@ -61,14 +61,14 @@ class TradeController extends BaseController
$request
=
Yii
::
$app
->
request
;
$hash
=
$request
->
post
(
'hash'
);
$version
=
$request
->
post
(
'version'
,
''
);
if
(
empty
(
$hash
))
{
if
(
empty
(
$hash
))
{
return
[
'code'
=>
1
,
'data'
=>
[],
'msg'
=>
'交易hash值不能为空'
];
}
$model
=
CoinHashMemo
::
find
()
->
where
([
'hash'
=>
$hash
])
->
asArray
()
->
one
();
if
(
empty
(
$model
))
{
return
[
'code'
=>
1
,
'data'
=>
[],
'msg'
=>
'记录不存在'
];
if
(
empty
(
$model
))
{
return
[
'code'
=>
1
,
'data'
=>
[
'memo'
=>
''
,
'coins_fee'
=>
''
],
'msg'
=>
'记录不存在'
];
}
if
(
empty
(
$version
))
{
if
(
empty
(
$version
))
{
return
[
'code'
=>
0
,
'data'
=>
$model
[
'memo'
]];
}
return
[
'code'
=>
0
,
'data'
=>
[
...
...
@@ -80,16 +80,16 @@ class TradeController extends BaseController
public
function
actionSyncToDb
()
{
$data
=
[];
$result
=
Yii
::
$app
->
redis
->
HGETALL
(
'trade_hash_memo'
);
foreach
(
$result
as
$key
=>
$val
){
if
((
$key
+
2
)
%
2
==
0
){
$result
=
Yii
::
$app
->
redis
->
HGETALL
(
'trade_hash_memo'
);
foreach
(
$result
as
$key
=>
$val
)
{
if
((
$key
+
2
)
%
2
==
0
)
{
$data
[]
=
[
'hash'
=>
$val
,
'memo'
=>
$result
[
$key
+
1
]
];
}
}
foreach
(
$data
as
$val
){
foreach
(
$data
as
$val
)
{
if
(
'0xc080c6a0937f25d1017e5e88bdcff5c3979810c8a6cc1f3a64cf50970da28fc9'
==
$val
[
'hash'
])
continue
;
$coin_memo_hash
=
new
CoinHashMemo
();
$coin_memo_hash
->
hash
=
$val
[
'hash'
];
...
...
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