Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
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
link33
plugin
Commits
e2b25d26
Commit
e2b25d26
authored
Dec 10, 2018
by
heyubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
golint
parent
b2831b11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
doc.go
plugin/dapp/multisig/doc.go
+1
-0
rpc.go
plugin/dapp/multisig/rpc/rpc.go
+5
-5
No files found.
plugin/dapp/multisig/doc.go
View file @
e2b25d26
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// license that can be found in the LICENSE file.
package
multisig
package
multisig
/*
/*
...
...
plugin/dapp/multisig/rpc/rpc.go
View file @
e2b25d26
...
@@ -65,11 +65,11 @@ func (c *Jrpc) MultiSigConfirmTx(param *mty.MultiSigConfirmTx, result *interface
...
@@ -65,11 +65,11 @@ func (c *Jrpc) MultiSigConfirmTx(param *mty.MultiSigConfirmTx, result *interface
}
}
// MultiSigAccTransferInTx :构造在多重签名合约中转账到多重签名账户的交易
// MultiSigAccTransferInTx :构造在多重签名合约中转账到多重签名账户的交易
func
(
c
*
Jrpc
)
MultiSigAccTransferInTx
(
param
*
mty
.
MultiSigExecTransfer
,
result
*
interface
{})
error
{
func
(
c
*
Jrpc
)
MultiSigAccTransferInTx
(
param
mty
.
MultiSigExecTransfer
,
result
*
interface
{})
error
{
if
param
==
nil
{
//
if param == nil {
return
types
.
ErrInvalidParam
//
return types.ErrInvalidParam
}
//
}
data
,
err
:=
types
.
CallCreateTx
(
types
.
ExecName
(
mty
.
MultiSigX
),
"MultiSigExecTransferTo"
,
param
)
data
,
err
:=
types
.
CallCreateTx
(
types
.
ExecName
(
mty
.
MultiSigX
),
"MultiSigExecTransferTo"
,
&
param
)
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
}
}
...
...
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