mirror of
https://github.com/monero-project/monero.git
synced 2025-05-11 08:45:00 -04:00
Condition v2 txes on v3 hard fork
This commit is contained in:
parent
59a66e209a
commit
f5465d8246
2 changed files with 12 additions and 1 deletions
|
@ -84,7 +84,9 @@ namespace cryptonote
|
|||
tvc.m_verifivation_failed = true;
|
||||
return false;
|
||||
}
|
||||
if (tx.version > 2) // TODO: max 1/2 needs to be conditioned by a hard fork
|
||||
|
||||
const size_t max_tx_version = version == 1 ? 1 : 2;
|
||||
if (tx.version > max_tx_version)
|
||||
{
|
||||
// v2 is the latest one we know
|
||||
tvc.m_verifivation_failed = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue