mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-05 10:29:27 +00:00
Merge pull request #43 from duggavo/master
Add MoneroBlock block explorer
This commit is contained in:
commit
7894d55d45
2 changed files with 12 additions and 1 deletions
|
@ -516,6 +516,12 @@
|
||||||
<string>blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion</string>
|
<string>blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>127.0.0.1:31312</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
|
|
|
@ -438,6 +438,11 @@ QString blockExplorerLink(const QString &blockExplorer, NetworkType::Type nettyp
|
||||||
return QString("http://blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion/monero/transaction/%1").arg(txid);
|
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) {
|
switch (nettype) {
|
||||||
case NetworkType::MAINNET:
|
case NetworkType::MAINNET:
|
||||||
|
|
Loading…
Reference in a new issue