Skip to content

Commit

Permalink
Update appConfig and hardhat.config.js***
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 22, 2024
1 parent 7ca5a40 commit 49ef8ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const appConfig = {
},
prod: {
operate: 8000, // TOFIX
next: 8234,
next: 3000,
},
},
};
Expand Down Expand Up @@ -289,9 +289,10 @@ ipcMain.on('check', async function (event, argument) {
}

event.sender.send('response', 'Launching App');
splashWindow.destroy();

createMainWindow();
createTray();
splashWindow.destroy();
} catch (e) {
console.log(e);
new Notification({
Expand Down
1 change: 1 addition & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
hostname: "0.0.0.0",
forking: {url: process.env.FORK_URL},
chainId: 100,
port: process.env.PORT || 8545,
Expand Down

0 comments on commit 49ef8ec

Please sign in to comment.