ganache-ui
ganache-ui copied to clipboard
System Error when running Ganache 2.5.4 on win32
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)
I encounter a similar problem on Linux (Ganache v2.5.4). The scenario to replicate is as follows:
- Create & deploy to Ganache a contract with
external payable
method:
contract Faucet {
receive() external payable {}
}
- Open
truffle console
and sends a transaction to the network:
truffle(development)> web3.eth.sendTransaction({from: accounts[0], to: "0x76eE...Ad4C1", value: "1000000000000000000"})
- Go to Ganache > Transactions view, open transaction with contract call