mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-21 23:18:13 +00:00
chore(common): Add new request types TXORIGINPUT and TXORIGOUTPUT.
This commit is contained in:
parent
5fc491c597
commit
ad6a0bc2a2
@ -195,6 +195,8 @@ message TxRequest {
|
||||
TXMETA = 2;
|
||||
TXFINISHED = 3;
|
||||
TXEXTRADATA = 4;
|
||||
TXORIGINPUT = 5;
|
||||
TXORIGOUTPUT = 6;
|
||||
}
|
||||
/**
|
||||
* Structure representing request details
|
||||
|
@ -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]
|
||||
|
@ -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),
|
||||
}
|
||||
|
@ -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]
|
||||
|
@ -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),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user