mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
lnwire: add a case in MessageType.String() for UpdateFee
This commit is contained in:
parent
77e3e74ea2
commit
50d521ba8c
1 changed files with 2 additions and 0 deletions
|
@ -92,6 +92,8 @@ func (t MessageType) String() string {
|
||||||
return "AnnounceSignatures"
|
return "AnnounceSignatures"
|
||||||
case MsgPong:
|
case MsgPong:
|
||||||
return "Pong"
|
return "Pong"
|
||||||
|
case MsgUpdateFee:
|
||||||
|
return "UpdateFee"
|
||||||
default:
|
default:
|
||||||
return "<unknown>"
|
return "<unknown>"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue