This is an automated email from the ASF dual-hosted git repository. cmorris pushed a commit to branch bugfix in repository https://gitbox.apache.org/repos/asf/incubator-milagro-dta.git
commit 9ec03c069e347757a95259f11ca9dafab2f5f1bd Author: Christopher Morris <[email protected]> AuthorDate: Fri Aug 30 09:50:20 2019 +0100 Fix Invalid method sig --- pkg/defaultservice/order.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/defaultservice/order.go b/pkg/defaultservice/order.go index 97a28c7..d712618 100644 --- a/pkg/defaultservice/order.go +++ b/pkg/defaultservice/order.go @@ -93,7 +93,7 @@ func (s *Service) ValidateOrderRequest(req *api.OrderRequest) error { } //ValidateOrderSecretRequest - Validate fields in the Order Secret -func (s *Service) ValidateOrderSecretRequest(req *api.OrderRequest) error { +func (s *Service) ValidateOrderSecretRequest(req *api.OrderSecretRequest, order documents.OrderDoc) error { return nil }
