Skip to content

Commit 1e30865

Browse files
committed
Update Blockchain Explorer URL & Enable Help>About for MacOS
1 parent 33266fa commit 1e30865

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

hddcoin-blockchain-gui/src/components/block/Block.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export default function Block() {
269269
value: (
270270
<Link
271271
target="_blank"
272-
href={`https://www.hddcoinexplorer.com/blockchain/puzzlehash/${blockRecord.farmer_puzzle_hash}`}
272+
href={`http://explorer.hddcoin.org/search/?query=${blockRecord.farmer_puzzle_hash}`}
273273
>
274274
{currencyCode
275275
? toBech32m(
@@ -285,7 +285,7 @@ export default function Block() {
285285
value: (
286286
<Link
287287
target="_blank"
288-
href={`https://www.hddcoinexplorer.com/blockchain/puzzlehash/${blockRecord.pool_puzzle_hash}`}
288+
href={`http://explorer.hddcoin.org/search/?query=${blockRecord.pool_puzzle_hash}`}
289289
>
290290
{currencyCode
291291
? toBech32m(

hddcoin-blockchain-gui/src/components/farm/FarmLatestBlockChallenges.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function FarmLatestBlockChallenges() {
6565
*Want to explore HDDcoin’s blocks further? Check out{' '}
6666
<Link
6767
color="primary"
68-
href="https://www.hddcoinexplorer.com/"
68+
href="http://explorer.hddcoin.org/"
6969
target="_blank"
7070
>
7171
HDDcoin Explorer

hddcoin-blockchain-gui/src/electron/main.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,8 +509,9 @@ if (!handleSquirrelEvent()) {
509509
},
510510
];
511511

512-
if (process.platform === 'linux' || process.platform === 'win32') {
512+
{
513513
// Help menu (Windows, Linux)
514+
// Added MacOS temporarily
514515
template[4].submenu.push(
515516
{
516517
type: 'separator',

0 commit comments

Comments
 (0)