rename wallet to lnwallet

This commit is contained in:
Olaoluwa Osuntokun 2015-12-16 14:51:59 -06:00
parent 9de294c31f
commit 147748d178
7 changed files with 7 additions and 1 deletions

@ -1,6 +1,10 @@
package revocation package revocation
import "github.com/btcsuite/btcd/wire" import (
"sync"
"github.com/btcsuite/btcd/wire"
)
// chainFragment... // chainFragment...
type chainFragment struct { type chainFragment struct {
@ -11,6 +15,8 @@ type chainFragment struct {
// HyperShaChain... // HyperShaChain...
// * https://github.com/rustyrussell/ccan/blob/master/ccan/crypto/shachain/design.txt // * https://github.com/rustyrussell/ccan/blob/master/ccan/crypto/shachain/design.txt
type HyperShaChain struct { type HyperShaChain struct {
sync.RWMutex
lastChainIndex uint64 lastChainIndex uint64
chainFragments []chainFragment chainFragments []chainFragment