From d6aea22adb80ac93ef7feb57dce3070c9f5cbbb5 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sat, 18 Jan 2014 20:35:45 -0600 Subject: [PATCH] Remove deprecated InvType_* constants. This closes #13. --- legacy.go | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 legacy.go diff --git a/legacy.go b/legacy.go deleted file mode 100644 index ee18b357..00000000 --- a/legacy.go +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2013-2014 Conformal Systems LLC. -// Use of this source code is governed by an ISC -// license that can be found in the LICENSE file. - -package btcwire - -// These constants are deprecated as they do not follow the standard Go style -// guidelines and are only provided for backwards compatibility. Use the -// InvType* constants instead. -const ( - InvVect_Error InvType = InvTypeError // DEPRECATED - InvVect_Tx InvType = InvTypeTx // DEPRECATED - InvVect_Block InvType = InvTypeBlock // DEPRECATED -)