-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
PrivateMinerSample doesn't include transactions into blocks #709
Comments
The problem here is that we are not processing inbound transactions until sync is complete. For the miner node the sync is disabled. We had code which enabled tx processing if sync is off but it was accidentally commented by me while refactoring.
|
For now the following workaround should work for the miner node: // ethereum - is the miner node instance
ethereum.addListener(new EthereumListenerAdapter() {
@Override
public void onHandShakePeer(Channel channel, HelloMessage helloMessage) {
channel.onSyncDone(true);
}
}); |
The regression is fixed ( |
With |
No description provided.
The text was updated successfully, but these errors were encountered: