From bc68c041638654518ea64488d4dadfaee10b501a Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Wed, 10 Jan 2018 16:10:24 +0100 Subject: [PATCH] stratum: handle more old masternodes (#204) --- stratum/db.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stratum/db.cpp b/stratum/db.cpp index 71a8600..30124d5 100644 --- a/stratum/db.cpp +++ b/stratum/db.cpp @@ -288,7 +288,11 @@ void db_update_coinds(YAAMP_DB *db) if (strcmp(coind->symbol, "CHC") == 0) coind->oldmasternodes = true; if (strcmp(coind->symbol, "CRW") == 0) coind->oldmasternodes = true; if (strcmp(coind->symbol, "FLAX") == 0) coind->oldmasternodes = true; + if (strcmp(coind->symbol, "ITZ") == 0) coind->oldmasternodes = true; if (strcmp(coind->symbol, "J") == 0 || strcmp(coind->symbol2, "J") == 0) coind->oldmasternodes = true; + if (strcmp(coind->symbol, "URALS") == 0) coind->oldmasternodes = true; + if (strcmp(coind->symbol, "VSX") == 0) coind->oldmasternodes = true; + if (strcmp(coind->symbol, "XLR") == 0) coind->oldmasternodes = true; } ////////////////////////////////////////////////////////////////////////////////////////////////////