Skip to content

Commit

Permalink
Fixed stupid Goland stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rosalinekarr committed Jan 4, 2019
1 parent 6cefd83 commit 93c5a5a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions protocol/storage/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ func init() {
cbor.RegisterCborType(queryRequest{})
}

// DealProposal is the information sent over the wire, when a client proposes a deal to a Miner.
// DealProposal is the information sent over the wire, when a client proposes a deal to a miner.
type DealProposal struct {
// PieceRef is the cid of the piece being stored
PieceRef cid.Cid

// Size is the total number of bytes the Proposal is asking to store
// Size is the total number of bytes the proposal is asking to store
Size *types.BytesAmount

// TotalPrice is the total price that will be paid for the entire storage operation
Expand All @@ -32,9 +32,9 @@ type DealProposal struct {
// Signature types.Signature
}

// DealResponse is the information sent over the wire, when a Miner responds to a client.
// DealResponse is the information sent over the wire, when a miner responds to a client.
type DealResponse struct {
// State is the current State of this deal
// State is the current state of this deal
State DealState

// Message is an optional message to add context to any given response
Expand All @@ -44,10 +44,10 @@ type DealResponse struct {
Proposal cid.Cid

// ProofInfo is a collection of information needed to convince the client that
// the Miner has sealed the data into a sector.
// the miner has sealed the data into a sector.
ProofInfo *ProofInfo

// Signature is a signature from the Miner over the response
// Signature is a signature from the miner over the response
Signature types.Signature
}

Expand Down

0 comments on commit 93c5a5a

Please sign in to comment.