]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
Add MoneroBlock to Utils.cpp
authorduggavo <108991918+duggavo@users.noreply.github.com>
Sun, 18 Sep 2022 10:38:58 +0000 (10:38 +0000)
committerGitHub <noreply@github.com>
Sun, 18 Sep 2022 10:38:58 +0000 (10:38 +0000)
src/utils/Utils.cpp

index b0ebbb83cb84e6b644e6943cc671acac466ec0c3..732bd02ebc7df7b38e5bee165b3f084034eb049b 100644 (file)
@@ -438,7 +438,12 @@ QString blockExplorerLink(const QString &blockExplorer, NetworkType::Type nettyp
             return QString("http://blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion/monero/transaction/%1").arg(txid);
         }
     }
-
+    else if (blockExplorer == "127.0.0.1:31312") {
+        if (nettype == NetworkType::MAINNET) {
+            return QString("http://127.0.0.1:31312/tx?id=%1").arg(txid);
+        }
+    }
+    
     switch (nettype) {
         case NetworkType::MAINNET:
             return QString("https://xmrchain.net/tx/%1").arg(txid);
@@ -566,4 +571,4 @@ QFont relativeFont(int delta) {
     font.setPointSize(font.pointSize() + delta);
     return font;
 }
-}
\ No newline at end of file
+}