Skip to content

Ethereum Classic Network doesn't work. #515

@AustP

Description

@AustP

Visit https://wallet.ethereum.org/ on the Main Ethereum Network and you will see that blocks are coming in.

image

Now switch to the Ethereum Classic Network and you will see that no blocks are coming in.

image

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);
    }
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions