chainntnfs/interface: add String method for SpendDetaill

This commit is contained in:
Johan T. Halseth 2019-11-14 16:09:07 +01:00
parent 2e85647ec4
commit fa40fa6950
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -241,6 +241,12 @@ type SpendDetail struct {
SpendingHeight int32
}
// String returns a string representation of SpendDetail.
func (s *SpendDetail) String() string {
return fmt.Sprintf("%v[%d] spending %v at height=%v", s.SpenderTxHash,
s.SpenderInputIndex, s.SpentOutPoint, s.SpendingHeight)
}
// SpendEvent encapsulates a spentness notification. Its only field 'Spend' will
// be sent upon once the target output passed into RegisterSpendNtfn has been
// spent on the blockchain.