diff --git a/src/masternodes/mn_checks.cpp b/src/masternodes/mn_checks.cpp index 7069128b11..88e4ca1a50 100644 --- a/src/masternodes/mn_checks.cpp +++ b/src/masternodes/mn_checks.cpp @@ -572,7 +572,7 @@ Res ApplyCustomTx(CCustomCSView &mnview, auto attributes = mnview.GetAttributes(); assert(attributes); - if (txType == CustomTxType::EvmTx && !isEvmEnabledForBlock) { + if ((txType == CustomTxType::EvmTx || txType == CustomTxType::TransferDomain) && !isEvmEnabledForBlock) { return Res::ErrCode(CustomTxErrCodes::Fatal, "EVM is not enabled on this block"); }