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
06afd62d
Commit
06afd62d
authored
Nov 13, 2020
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
819aeff9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
15 deletions
+13
-15
WalletController.php
api/controllers/WalletController.php
+13
-15
No files found.
api/controllers/WalletController.php
View file @
06afd62d
...
...
@@ -116,29 +116,28 @@ class WalletController extends BaseController
$token
=
Yii
::
$app
->
request
->
get
(
'address'
,
''
);
$symbol
=
Yii
::
$app
->
request
->
get
(
'symbol'
,
''
);
if
(
empty
(
$platform_id
)
||
empty
(
$token
)
||
empty
(
$symbol
))
{
$msg
=
'参数不能为空'
;
$code
=
-
1
;
$data
=
null
;
$this
->
msg
=
'参数不能为空'
;
$this
->
code
=
-
1
;
goto
doEnd
;
}
$chain_model
=
CoinPlatform
::
find
()
->
select
(
'chain_id'
)
->
where
([
'id'
=>
$platform_id
])
->
andWhere
([
'<>'
,
'chain_id'
,
0
])
->
one
();
if
(
empty
(
$chain_model
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
$
this
->
msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$
this
->
code
=
-
1
;
goto
doEnd
;
}
$platform
=
CoinPlatformWithHold
::
find
()
->
select
(
'exer, platform'
)
->
where
([
'id'
=>
$chain_model
->
chain_id
])
->
one
();
if
(
empty
(
$platform
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
$
this
->
msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$
this
->
code
=
-
1
;
goto
doEnd
;
}
$node
=
Yii
::
$app
->
params
[
'chain_nodes'
][
strtoupper
(
$platform
->
platform
)];
$node
=
Yii
::
$app
->
params
[
'chain_nodes'
][
strtoupper
(
$platform
->
platform
)]
??
null
;
if
(
empty
(
$node
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
$
this
->
msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$
this
->
code
=
-
1
;
goto
doEnd
;
}
...
...
@@ -170,14 +169,13 @@ class WalletController extends BaseController
}
if
(
0
!==
$result
[
'code'
])
{
$msg
=
'当前发币人数过多,请客官稍后再试'
;
$code
=
-
1
;
$data
=
null
;
$this
->
msg
=
'当前发币人数过多,请客官稍后再试'
;
$this
->
code
=
-
1
;
goto
doEnd
;
}
$data
=
$result
[
'result'
];
$
this
->
data
=
$result
[
'result'
];
doEnd
:
return
[
'code'
=>
$
code
,
'data'
=>
$data
,
'msg'
=>
$
msg
];
return
[
'code'
=>
$
this
->
code
,
'data'
=>
$this
->
data
,
'msg'
=>
$this
->
msg
];
}
public
function
actionTransfer
()
...
...
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