lbcd/legacy.go

15 lines
516 B
Go
Raw Normal View History

2014-01-09 06:44:08 +01:00
// 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
)