htlcswitch: remove extramsg string from ForwardingError

Remove the extramsg field in ForwardingError because
it has been replaced with detailed link errors.
This commit is contained in:
carla
2020-01-14 15:07:42 +02:00
parent f430fd50c5
commit ec099bf5dd
3 changed files with 17 additions and 26 deletions

View File

@@ -400,7 +400,7 @@ func (o *mockDeobfuscator) DecryptError(reason lnwire.OpaqueReason) (*Forwarding
return nil, err
}
return NewForwardingError(failure, 1, ""), nil
return NewForwardingError(failure, 1), nil
}
var _ ErrorDecrypter = (*mockDeobfuscator)(nil)