diff options
author | Gav Wood <i@gavwood.com> | 2014-02-10 05:30:55 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-02-10 05:30:55 +0800 |
commit | 38faf687aee351d5425c9a7f70c36c3fdf121133 (patch) | |
tree | 9c69dfe1d0f467c9ece8b7cd21bb7541ba3bca2e | |
parent | 27dfbf1962184e10f77a8812d185c67e27b54371 (diff) | |
download | dexon-solidity-38faf687aee351d5425c9a7f70c36c3fdf121133.tar.gz dexon-solidity-38faf687aee351d5425c9a7f70c36c3fdf121133.tar.zst dexon-solidity-38faf687aee351d5425c9a7f70c36c3fdf121133.zip |
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.
-rw-r--r-- | crypto.cpp | 1 | ||||
-rw-r--r-- | state.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -41,7 +41,6 @@ int cryptoTest() Transaction t; t.nonce = 0; - t.fee = 0; t.value = 1; // 1 wei. t.receiveAddress = toAddress(sha3("123")); @@ -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()); |