From b9ea6354faad429b8a7e17a26137daf9ef125cc2 Mon Sep 17 00:00:00 2001 From: Hannah Howard Date: Mon, 11 Nov 2019 12:08:15 -0800 Subject: [PATCH] Update chain/deals/types.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Ɓukasz Magiera --- chain/deals/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/deals/types.go b/chain/deals/types.go index fa2199b4a..5262aee37 100644 --- a/chain/deals/types.go +++ b/chain/deals/types.go @@ -38,7 +38,7 @@ var ( ErrInacceptableDealState = errors.New("Deal is not a in a state where deals are accepted") // AcceptableDealStates are the states in which it would make sense to actually start a data transfer - AcceptableDealStates = []api.DealState{api.DealAccepted, api.DealUnknown} + DataTransferStates = []api.DealState{api.DealAccepted, api.DealUnknown} ) const DealProtocolID = "/fil/storage/mk/1.0.1"