lnd.xprv/revocation/shachain.go
Olaoluwa Osuntokun 07984836e4 Create skeleton for revocation methods
* Just rusty’s shachain for now
2015-12-16 14:39:05 -06:00

31 lines
476 B
Go

package revocation
import "github.com/btcsuite/btcd/wire"
// chainFragment...
type chainFragment struct {
index uint64
hash wire.ShaHash
}
// ShaChain...
type ShaChain struct {
lastChainIndex uint64
chainFragments []chainFragment
}
// NewShaChain...
func NewShaChain(seed wire.ShaHash) *ShaChain {
// TODO(roasbeef): from/to or static size?
return nil
}
// NextHash...
func (s *ShaChain) NextHash() {
}
// GetHash...
func (s *ShaChain) GetHash(index uint64) {
}