-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recently events from solidity are not firing on Chrome, but working fine on firefox and Brave. #2952
Comments
I'm also having this issue. I have an Ethereum node running locally, Chrome does not have MM installed and is getting the
|
I am not sure why..but it's working again. |
I have the same issue, when i try it in incognito mode it works, but when i try normal, it doesn't |
@halgurdh are you still experiencing this issue? and you're saying it works fine in firefox & incognito chrome, but not regular chrome? |
@bdresser not anymore, I think it was something else that wasn't working which didn't fire the events. Its works now. |
I have a contract running on Ropsten and the events show up in Brave and Firefox, but nothing in Chrome. This is a recent issue. This seems odd.
solidity
contract MyLife is Owned, Accounting {
}
function payForEntry(bytes32 sentenceHash) onlyBy(msg.sender) public payable {
FeePaid(msg.sender, sentenceHash);
}
JS.
let c = web3.eth.contract(_this.data.contract.abi, _this.data.contract.address)
let cI = c.at(_this.data.contract.address)
cI.FeePaid({},{address:_this.data.contract.address}).watch(function (error, result) {
if (!error) {
console.log("Good" + result)
} else {
console.log(error)
}
})
The text was updated successfully, but these errors were encountered: