Add 7.3 protocol version to transaction_profiling_analyzer.py

Manually tested the tool to be working.
This commit is contained in:
Jingyu Zhou 2023-06-26 22:12:00 -07:00 committed by Xiaoge Su
parent 92fc089eb0
commit 321b77d809
1 changed files with 2 additions and 0 deletions

View File

@ -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,
]
)