chore(protocol): remove unused ThpInvalidData error type

This commit is contained in:
M1nd3r
2025-09-22 10:09:39 +02:00
committed by Szymon Lesisz
parent 32d786f4c9
commit b3233240b4
2 changed files with 0 additions and 3 deletions

View File

@@ -142,8 +142,6 @@ const decodeThpError = (payload: Buffer): ThpMessageResponse => {
return 'ThpUnallocatedChannel';
case 0x03:
return 'ThpDecryptionFailed';
case 0x04:
return 'ThpInvalidData';
case 0x05:
return 'ThpDeviceLocked';
default:

View File

@@ -13,7 +13,6 @@ export type ThpError = {
| 'ThpTransportBusy'
| 'ThpUnallocatedChannel'
| 'ThpDecryptionFailed'
| 'ThpInvalidData'
| 'ThpDeviceLocked'
| 'ThpUnknownError';
message: string;