lnwire: add a case in MessageType.String() for UpdateFee

This commit is contained in:
Olaoluwa Osuntokun 2017-08-21 22:25:32 -07:00
parent 77e3e74ea2
commit 50d521ba8c
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,8 @@ func (t MessageType) String() string {
return "AnnounceSignatures"
case MsgPong:
return "Pong"
case MsgUpdateFee:
return "UpdateFee"
default:
return "<unknown>"
}