Skip to content

Commit

Permalink
Add missing license header and remove extra space.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Sep 12, 2013
1 parent e4925b4 commit 867149f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion addrconvs.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand All @@ -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.
Expand Down

0 comments on commit 867149f

Please sign in to comment.