From b592a678928618839eaad681868a72e44186d034 Mon Sep 17 00:00:00 2001 From: laser Date: Mon, 6 Apr 2020 13:31:49 -0700 Subject: [PATCH] move to types --- types.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/types.go b/types.go index 85525e9b4..d452cb507 100644 --- a/types.go +++ b/types.go @@ -7,7 +7,6 @@ import ( "github.com/ipfs/go-cid" "github.com/filecoin-project/specs-actors/actors/abi" - "github.com/filecoin-project/specs-actors/actors/builtin/market" "github.com/filecoin-project/specs-actors/actors/runtime/exitcode" "github.com/filecoin-project/specs-storage/storage" ) @@ -122,8 +121,3 @@ type MessageReceipt struct { func (mr *MessageReceipt) Equals(o *MessageReceipt) bool { return mr.ExitCode == o.ExitCode && bytes.Equal(mr.Return, o.Return) && mr.GasUsed == o.GasUsed } - -type MarketDeal struct { - Proposal market.DealProposal - State market.DealState -}