Add missing license header and remove extra space.

This commit is contained in:
Josh Rickmar 2013-09-12 11:32:47 -04:00
parent e4925b4abe
commit 867149f470

View file

@ -1,3 +1,7 @@
// Copyright (c) 2013 Conformal Systems LLC.
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package btcutil
import (
@ -15,7 +19,7 @@ var ErrAddrUnknownNet = errors.New("unrecognized network identifier byte")
// ErrMalformedAddress describes an error where an address is improperly
// formatted, either due to an incorrect length of the hashed pubkey or
// a non-matching checksum.
var ErrMalformedAddress = errors.New("malformed address")
var ErrMalformedAddress = errors.New("malformed address")
// Constants used to specify which network a payment address belongs
// to. Mainnet address cannot be used on the Testnet, and vice versa.