Explorar el Código

Order

- refactoring
Alexey Kim hace 5 meses
padre
commit
fedfea3390
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      order.go

+ 2 - 2
order.go

@@ -18,8 +18,8 @@ type Order interface {
 
 	// GetLegs an array of Order entities associated with this order
 	GetLegs() []Order
-	GetStopLoss() *Order
-	GetTakeProfit() *Order
+	GetStopLoss() Order
+	GetTakeProfit() Order
 
 	GetSymbol() string
 	GetAction() OrderAction