Update btcchain import paths to new location.

This commit is contained in:
Dave Collins 2015-01-30 16:15:57 -06:00
parent b29aad9f09
commit d71631b41f

View file

@ -5,7 +5,7 @@
package bloom package bloom
import ( import (
"github.com/btcsuite/btcchain" "github.com/btcsuite/btcd/blockchain"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
) )
@ -40,7 +40,7 @@ func (m *merkleBlock) calcHash(height, pos uint32) *btcwire.ShaHash {
} else { } else {
right = left right = left
} }
return btcchain.HashMerkleBranches(left, right) return blockchain.HashMerkleBranches(left, right)
} }
// traverseAndBuild builds a partial merkle tree using a recursive depth-first // traverseAndBuild builds a partial merkle tree using a recursive depth-first