From 88106d8be26fbd09363f55aaa331706e3ad9051e Mon Sep 17 00:00:00 2001 From: Frederic Rezeau Date: Sat, 27 Jan 2018 06:46:36 +0900 Subject: [PATCH] Add MAG (Magnet) masternode to oldmasternodes (#213) Greetings, I am head dev for Magnet masternode and noticed the change made in coinbase.cpp for recent masternode RPC as default. This change has disabled masternode payments on pools using MAG client. So, we would like to add it to oldmasternodes list with this pull request. --- stratum/db.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stratum/db.cpp b/stratum/db.cpp index a221fe6..53c56e5 100644 --- a/stratum/db.cpp +++ b/stratum/db.cpp @@ -302,6 +302,7 @@ void db_update_coinds(YAAMP_DB *db) 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, "MAG") == 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;