Add 7.3 protocol version to transaction_profiling_analyzer.py
Manually tested the tool to be working.
This commit is contained in:
parent
92fc089eb0
commit
321b77d809
|
@ -50,6 +50,7 @@ PROTOCOL_VERSION_6_3 = 0x0FDB00B063010001
|
|||
PROTOCOL_VERSION_7_0 = 0x0FDB00B070010001
|
||||
PROTOCOL_VERSION_7_1 = 0x0FDB00B071010000
|
||||
PROTOCOL_VERSION_7_2 = 0x0FDB00B072000000
|
||||
PROTOCOL_VERSION_7_3 = 0x0FDB00B073000000
|
||||
supported_protocol_versions = frozenset(
|
||||
[
|
||||
PROTOCOL_VERSION_5_2,
|
||||
|
@ -60,6 +61,7 @@ supported_protocol_versions = frozenset(
|
|||
PROTOCOL_VERSION_7_0,
|
||||
PROTOCOL_VERSION_7_1,
|
||||
PROTOCOL_VERSION_7_2,
|
||||
PROTOCOL_VERSION_7_3,
|
||||
]
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue