mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
watchtower/wtdb/breach_hint: redefine breach hint as sha(txid)
This commit is contained in:
parent
1b89ba1782
commit
d9cfa610dc
1 changed files with 8 additions and 4 deletions
|
@ -1,23 +1,27 @@
|
|||
package blob
|
||||
|
||||
import (
|
||||
"crypto/sha256"
|
||||
"encoding/hex"
|
||||
|
||||
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
||||
)
|
||||
|
||||
// BreachHintSize is the length of the txid prefix used to identify remote
|
||||
// BreachHintSize is the length of the identifier used to detect remote
|
||||
// commitment broadcasts.
|
||||
const BreachHintSize = 16
|
||||
|
||||
// BreachHint is the first 16-bytes of the txid belonging to a revoked
|
||||
// commitment transaction.
|
||||
// BreachHint is the first 16-bytes of SHA256(txid), which is used to identify
|
||||
// the breach transaction.
|
||||
type BreachHint [BreachHintSize]byte
|
||||
|
||||
// NewBreachHintFromHash creates a breach hint from a transaction ID.
|
||||
func NewBreachHintFromHash(hash *chainhash.Hash) BreachHint {
|
||||
h := sha256.New()
|
||||
h.Write(hash[:])
|
||||
|
||||
var hint BreachHint
|
||||
copy(hint[:], hash[:BreachHintSize])
|
||||
copy(hint[:], h.Sum(nil))
|
||||
return hint
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue