Update btcchain import paths to new location.
This commit is contained in:
parent
b29aad9f09
commit
d71631b41f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue