From 38faf687aee351d5425c9a7f70c36c3fdf121133 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sun, 9 Feb 2014 21:30:55 +0000 Subject: [PATCH] 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. --- crypto.cpp | 1 - state.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/crypto.cpp b/crypto.cpp index 71fc41292..215d772ee 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 25663b851..64bd37acc 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());