[Ethereum] Parity on Windows 64bit Questions

miningparitysynchronizationwindows

Today I downloaded Parity for Windows.
Start it with parity –author 0x9999999999999 –rpc –rpcaddr 192.x.x.1 –rpcport 8545.

Then I have started ethminer ethminer -G -F 192.x.x.1:8545

When I go to parity's interface I see the best block sync with etherstats, but no commit on next block. Why?

Thanks a lot.

Best Answer

--author requires an argument: you must tell it what the payout address is.

e.g. parity --author 0x1234567890123456789012345678901234567890 --rpc --rpcaddr 192.x.x.1 --rpcport 8545

For what it's worth, Parity enables RPC by default on 8545 - you only need:

parity --author 0x1234567890123456789012345678901234567890 --rpcaddr 192.x.x.1

Related Topic