ganache-ui icon indicating copy to clipboard operation
ganache-ui copied to clipboard

System Error when running Ganache 2.5.4 on win32

Open TrendAaron opened this issue 2 years ago • 1 comments

Uploading image.png…

PLATFORM: win32 GANACHE VERSION: 2.5.4

EXCEPTION:

TypeError: Cannot read property 'stack' of undefined
    at IpcMainImpl.<anonymous> (C:\Program Files\WindowsApps\GanacheUI_2.5.4.0_x64__5dg5pnz03psnj\app\resources\app.asar\webpack:\src\integrations\ethereum\index.js:96:31)

TrendAaron avatar Aug 30 '22 08:08 TrendAaron

I encounter a similar problem on Linux (Ganache v2.5.4). The scenario to replicate is as follows:

  1. Create & deploy to Ganache a contract with external payable method:
contract Faucet {
    receive() external payable {}
}
  1. Open truffle console and sends a transaction to the network:
truffle(development)> web3.eth.sendTransaction({from: accounts[0], to: "0x76eE...Ad4C1", value: "1000000000000000000"})
  1. Go to Ganache > Transactions view, open transaction with contract call

Alchemik avatar Aug 30 '22 12:08 Alchemik