-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Ethereum Classic Network doesn't work. #515
Copy link
Copy link
Closed
Description
Visit https://wallet.ethereum.org/ on the Main Ethereum Network and you will see that blocks are coming in.
Now switch to the Ethereum Classic Network and you will see that no blocks are coming in.
Alternatively, pasting the following in a web3 injected console will show transactions:
web3 = new Web3(new Web3.providers.HttpProvider('https://mainnet.infura.io/'));
web3.eth.filter('latest').watch(function(err, tx) {
if (err) {
console.log(err);
} else {
console.log('mainnet: ' + tx);
}
});
But if you paste the same code only updating the network, you will see no transactions:
web3 = new Web3(new Web3.providers.HttpProvider('https://mainnet-nf.infura.io/'));
web3.eth.filter('latest').watch(function(err, tx) {
if (err) {
console.log(err);
} else {
console.log('mainnet-nf: ' + tx);
}
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

