Peers have IDs to solve duplicate peers issue.

No post-mine state visible in advance.
Additional parts of protocol no longer optional.
Protocol version bump.
Various GUI improvements.
Better (more dynamic) and more correct handling of fee structure.
This commit is contained in:
Gav Wood 2014-02-09 21:30:55 +00:00
parent 27dfbf1962
commit 38faf687ae
2 changed files with 0 additions and 2 deletions

View File

@ -41,7 +41,6 @@ int cryptoTest()
Transaction t;
t.nonce = 0;
t.fee = 0;
t.value = 1; // 1 wei.
t.receiveAddress = toAddress(sha3("123"));

View File

@ -62,7 +62,6 @@ int stateTest()
{
Transaction t;
t.nonce = s.transactionsFrom(myMiner.address());
t.fee = 0;
t.value = 1000; // 1e3 wei.
t.receiveAddress = me.address();
t.sign(myMiner.secret());