From be7928d4bdd0ef7fc08f4811f856c1e777ee2a4d Mon Sep 17 00:00:00 2001 From: Qweder93 Date: Wed, 28 Apr 2021 00:35:39 +0300 Subject: [PATCH] crashcollect: removed redundant structure Change-Id: Ied65a057baf4cbbe8a47685b0c52f3900363d4bd --- crashcollect/crash/crashes.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 crashcollect/crash/crashes.go diff --git a/crashcollect/crash/crashes.go b/crashcollect/crash/crashes.go deleted file mode 100644 index 9dabf26a6..000000000 --- a/crashcollect/crash/crashes.go +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (C) 2020 Storj Labs, Inc. -// See LICENSE for copying information. - -package crash - -import ( - "time" - - "storj.io/common/storj" -) - -// Crash holds information about storagenode crash. -type Crash struct { - ID storj.NodeID - CompressedPanic []byte - CrashedAt time.Time -}