Commit 803fabde authored by linj's avatar linj Committed by vipwzw

update

parent f147b859
...@@ -184,6 +184,8 @@ func CreateRawTradeSellTx(parm *TradeSellTx) (*types.Transaction, error) { ...@@ -184,6 +184,8 @@ func CreateRawTradeSellTx(parm *TradeSellTx) (*types.Transaction, error) {
Stoptime: 0, Stoptime: 0,
Crowdfund: false, Crowdfund: false,
AssetExec: parm.AssetExec, AssetExec: parm.AssetExec,
PriceExec: parm.PriceExec,
PriceSymbol: parm.PriceSymbol,
} }
sell := &Trade{ sell := &Trade{
Ty: TradeSellLimit, Ty: TradeSellLimit,
...@@ -231,6 +233,8 @@ func CreateRawTradeBuyLimitTx(parm *TradeBuyLimitTx) (*types.Transaction, error) ...@@ -231,6 +233,8 @@ func CreateRawTradeBuyLimitTx(parm *TradeBuyLimitTx) (*types.Transaction, error)
PricePerBoardlot: parm.PricePerBoardlot, PricePerBoardlot: parm.PricePerBoardlot,
TotalBoardlot: parm.TotalBoardlot, TotalBoardlot: parm.TotalBoardlot,
AssetExec: parm.AssetExec, AssetExec: parm.AssetExec,
PriceExec: parm.PriceExec,
PriceSymbol: parm.PriceSymbol,
} }
buyLimit := &Trade{ buyLimit := &Trade{
Ty: TradeBuyLimit, Ty: TradeBuyLimit,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment