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
9ddb8df2
Commit
9ddb8df2
authored
Nov 26, 2018
by
vipwzw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
del rpctrade.go
parent
f1f8836f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
35 deletions
+0
-35
rpctrade.go
plugin/dapp/trade/types/rpctrade.go
+0
-35
No files found.
plugin/dapp/trade/types/rpctrade.go
deleted
100644 → 0
View file @
f1f8836f
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
types
import
(
"encoding/json"
)
// RPCReplyTradeOrder : trade order
type
RPCReplyTradeOrder
struct
{
TokenSymbol
string
`protobuf:"bytes,1,opt,name=tokenSymbol" json:"tokenSymbol"`
Owner
string
`protobuf:"bytes,2,opt,name=owner" json:"owner"`
AmountPerBoardlot
int64
`protobuf:"varint,3,opt,name=amountPerBoardlot" json:"amountPerBoardlot"`
MinBoardlot
int64
`protobuf:"varint,4,opt,name=minBoardlot" json:"minBoardlot"`
PricePerBoardlot
int64
`protobuf:"varint,5,opt,name=pricePerBoardlot" json:"pricePerBoardlot"`
TotalBoardlot
int64
`protobuf:"varint,6,opt,name=totalBoardlot" json:"totalBoardlot"`
TradedBoardlot
int64
`protobuf:"varint,7,opt,name=tradedBoardlot" json:"tradedBoardlot"`
BuyID
string
`protobuf:"bytes,8,opt,name=buyID" json:"buyID"`
Status
int32
`protobuf:"varint,9,opt,name=status" json:"status"`
SellID
string
`protobuf:"bytes,10,opt,name=sellID" json:"sellID"`
TxHash
string
`protobuf:"bytes,11,opt,name=txHash" json:"txHash"`
Height
int64
`protobuf:"varint,12,opt,name=height" json:"height"`
Key
string
`protobuf:"bytes,13,opt,name=key" json:"key"`
BlockTime
int64
`protobuf:"varint,14,opt,name=blockTime" json:"blockTime"`
IsSellOrder
bool
`protobuf:"varint,15,opt,name=isSellOrder" json:"isSellOrder"`
AssetExec
string
`protobuf:"bytes,16,opt,name=assetExec" json:"assetExec"`
}
//MarshalJSON :
func
(
reply
*
ReplyTradeOrder
)
MarshalJSON
()
([]
byte
,
error
)
{
r
:=
(
*
RPCReplyTradeOrder
)(
reply
)
return
json
.
Marshal
(
r
)
}
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