You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
TypeError: Cannot read property 'stack' of undefined
at IpcMainImpl.<anonymous> (/webpack:/src/integrations/ethereum/index.js:96:31)
I had just executed a transaction on a smart contract that I was writing as part of a learning project.
This is the simple contract code, it is intentionally blank inside the receive for now. Just learning and messing with stuff.
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
contract Faucet {
receive() external payable {
}
}
Here is the line I executed at my truffle console:
web3.eth.sendTransaction({from: accounts[0], to: "0x0653317E2e1C597fE09C283A5d6B51D3c8C71e88", value: "10000000000000000000"})
All that I did after that was to click on the transaction in my list of transactions and the error message popped up.
The text was updated successfully, but these errors were encountered:
PLATFORM: linux
GANACHE VERSION: 2.5.4
EXCEPTION:
The text was updated successfully, but these errors were encountered: