im trying to sync ETH blockchain using openethereum but stuck after 2283440 height
i try to change the web3 limit as per #2744 but still wont sync n keep disconnected. any advice? my eth config is as per following
ETH: {
mainnet: {
chainSource: 'p2p',
trustedPeers: [{ host: '127.0.0.1', port: 30303 }],
provider: {
host: '127.0.0.1',
protocol: 'ws',
port: 8546,
options: {
clientConfig:{
maxReceivedFrameSize: 1073741824,
maxReceivedMessageSize: 1073741824
}
}
}
}
}