Skip to content

Commit

Permalink
fix(storagemarket): minor lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahhoward committed Mar 11, 2020
1 parent 0584029 commit 2777641
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storagemarket/impl/storedask/storedask.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ func (s *StoredAsk) GetAsk(addr address.Address) *storagemarket.SignedStorageAsk
if s.ask == nil {
return nil
}
var ask storagemarket.SignedStorageAsk
ask = *s.ask
ask := *s.ask
return &ask
}

Expand Down

0 comments on commit 2777641

Please sign in to comment.