diff --git a/lnwire/commit_sig.go b/lnwire/commit_sig.go index 5a91f895..ba0e141d 100644 --- a/lnwire/commit_sig.go +++ b/lnwire/commit_sig.go @@ -1,7 +1,6 @@ package lnwire import ( - "fmt" "io" "github.com/roasbeef/btcd/btcec" @@ -98,18 +97,3 @@ func (c *CommitSig) Validate() error { // We're good! return nil } - -// String returns the string representation of the target CommitSig. -// -// This is part of the lnwire.Message interface. -func (c *CommitSig) String() string { - var serializedSig []byte - if c.CommitSig != nil { - serializedSig = c.CommitSig.Serialize() - } - - return fmt.Sprintf("\n--- Begin CommitSig ---\n") + - fmt.Sprintf("ChannelPoint:\t%v\n", c.ChannelPoint) + - fmt.Sprintf("CommitSig:\t\t%x\n", serializedSig) + - fmt.Sprintf("--- End CommitSig ---\n") -} diff --git a/lnwire/update_add_htlc.go b/lnwire/update_add_htlc.go index e7b191fb..baed20d9 100644 --- a/lnwire/update_add_htlc.go +++ b/lnwire/update_add_htlc.go @@ -141,17 +141,3 @@ func (c *UpdateAddHTLC) Validate() error { // We're good! return nil } - -// String returns the string representation of the target UpdateAddHTLC. -// -// This is part of the lnwire.Message interface. -func (c *UpdateAddHTLC) String() string { - return fmt.Sprintf("\n--- Begin UpdateAddHTLC ---\n") + - fmt.Sprintf("ChannelPoint:\t%v\n", c.ChannelPoint) + - fmt.Sprintf("ID:\t%v\n", c.ID) + - fmt.Sprintf("Expiry:\t\t%d\n", c.Expiry) + - fmt.Sprintf("Amount\t\t%d\n", c.Amount) + - fmt.Sprintf("PaymentHash:\t\t%x\n", c.PaymentHash) + - fmt.Sprintf("OnionBlob:\t\t\t\t%x\n", c.OnionBlob) + - fmt.Sprintf("--- End UpdateAddHTLC ---\n") -} diff --git a/lnwire/update_fail_htlc.go b/lnwire/update_fail_htlc.go index ce853378..c1f31a89 100644 --- a/lnwire/update_fail_htlc.go +++ b/lnwire/update_fail_htlc.go @@ -1,7 +1,6 @@ package lnwire import ( - "fmt" "io" "github.com/roasbeef/btcd/wire" @@ -158,13 +157,3 @@ func (c *UpdateFailHTLC) Validate() error { // We're good! return nil } - -// String returns the string representation of the target UpdateFailHTLC. This is -// part of the lnwire.Message interface. -func (c *UpdateFailHTLC) String() string { - return fmt.Sprintf("\n--- Begin UpdateFailHTLC ---\n") + - fmt.Sprintf("ChannelPoint:\t%d\n", c.ChannelPoint) + - fmt.Sprintf("ID:\t%d\n", c.ID) + - fmt.Sprintf("Reason:\t\t%x\n", c.Reason) + - fmt.Sprintf("--- End UpdateFailHTLC ---\n") -} diff --git a/lnwire/update_fulfill_htlc.go b/lnwire/update_fulfill_htlc.go index ebf5d501..d30f6fc3 100644 --- a/lnwire/update_fulfill_htlc.go +++ b/lnwire/update_fulfill_htlc.go @@ -1,7 +1,6 @@ package lnwire import ( - "fmt" "io" "github.com/roasbeef/btcd/wire" @@ -103,14 +102,3 @@ func (c *UpdateFufillHTLC) Validate() error { // We're good! return nil } - -// String returns the string representation of the target UpdateFufillHTLC. -// -// This is part of the lnwire.Message interface. -func (c *UpdateFufillHTLC) String() string { - return fmt.Sprintf("\n--- Begin UpdateFufillHTLC ---\n") + - fmt.Sprintf("ChannelPoint:\t%v\n", c.ChannelPoint) + - fmt.Sprintf("ID:\t%d\n", c.ID) + - fmt.Sprintf("RedemptionHashes:\t\t%x\n", c.PaymentPreimage) + - fmt.Sprintf("--- End UpdateFufillHTLC ---\n") -}