aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-02-10 05:30:55 +0800
committerGav Wood <i@gavwood.com>2014-02-10 05:30:55 +0800
commit38faf687aee351d5425c9a7f70c36c3fdf121133 (patch)
tree9c69dfe1d0f467c9ece8b7cd21bb7541ba3bca2e
parent27dfbf1962184e10f77a8812d185c67e27b54371 (diff)
downloaddexon-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.cpp1
-rw-r--r--state.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/crypto.cpp b/crypto.cpp
index 71fc4129..215d772e 100644
--- a/crypto.cpp
+++ b/crypto.cpp
@@ -41,7 +41,6 @@ int cryptoTest()
Transaction t;
t.nonce = 0;
- t.fee = 0;
t.value = 1; // 1 wei.
t.receiveAddress = toAddress(sha3("123"));
diff --git a/state.cpp b/state.cpp
index 25663b85..64bd37ac 100644
--- a/state.cpp
+++ b/state.cpp
@@ -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());