1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

chore(common): Add new request types TXORIGINPUT and TXORIGOUTPUT.

This commit is contained in:
Andrew Kozlik 2020-09-23 18:00:06 +02:00 committed by Andrew Kozlik
parent 5fc491c597
commit ad6a0bc2a2
5 changed files with 10 additions and 4 deletions

View File

@ -195,6 +195,8 @@ message TxRequest {
TXMETA = 2;
TXFINISHED = 3;
TXEXTRADATA = 4;
TXORIGINPUT = 5;
TXORIGOUTPUT = 6;
}
/**
* Structure representing request details

View File

@ -8,3 +8,5 @@ TXOUTPUT = 1 # type: Literal[1]
TXMETA = 2 # type: Literal[2]
TXFINISHED = 3 # type: Literal[3]
TXEXTRADATA = 4 # type: Literal[4]
TXORIGINPUT = 5 # type: Literal[5]
TXORIGOUTPUT = 6 # type: Literal[6]

View File

@ -9,7 +9,7 @@ if __debug__:
try:
from typing import Dict, List # noqa: F401
from typing_extensions import Literal # noqa: F401
EnumTypeRequestType = Literal[0, 1, 2, 3, 4]
EnumTypeRequestType = Literal[0, 1, 2, 3, 4, 5, 6]
except ImportError:
pass
@ -31,7 +31,7 @@ class TxRequest(p.MessageType):
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('request_type', p.EnumType("RequestType", (0, 1, 2, 3, 4)), None),
1: ('request_type', p.EnumType("RequestType", (0, 1, 2, 3, 4, 5, 6)), None),
2: ('details', TxRequestDetailsType, None),
3: ('serialized', TxRequestSerializedType, None),
}

View File

@ -8,3 +8,5 @@ TXOUTPUT = 1 # type: Literal[1]
TXMETA = 2 # type: Literal[2]
TXFINISHED = 3 # type: Literal[3]
TXEXTRADATA = 4 # type: Literal[4]
TXORIGINPUT = 5 # type: Literal[5]
TXORIGOUTPUT = 6 # type: Literal[6]

View File

@ -9,7 +9,7 @@ if __debug__:
try:
from typing import Dict, List # noqa: F401
from typing_extensions import Literal # noqa: F401
EnumTypeRequestType = Literal[0, 1, 2, 3, 4]
EnumTypeRequestType = Literal[0, 1, 2, 3, 4, 5, 6]
except ImportError:
pass
@ -31,7 +31,7 @@ class TxRequest(p.MessageType):
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('request_type', p.EnumType("RequestType", (0, 1, 2, 3, 4)), None),
1: ('request_type', p.EnumType("RequestType", (0, 1, 2, 3, 4, 5, 6)), None),
2: ('details', TxRequestDetailsType, None),
3: ('serialized', TxRequestSerializedType, None),
}