- Mar 23, 2016
-
-
Jeffrey Wilcke authored
The EVM is now initialised with an additional configured object that allows you to turn on debugging options.
-
- Mar 22, 2016
-
-
Jeffrey Wilcke authored
The EVM was previously initialised and created for every CALL, CALLCODE, DELEGATECALL and CREATE. This PR changes this behaviour so that the same EVM can be used through the session and beyond as long as the Environment sticks around.
-
- Mar 15, 2016
-
-
Leif Jurvetson authored
-
Leif Jurvetson authored
-
Leif Jurvetson authored
-
- Mar 11, 2016
-
-
Jeffrey Wilcke authored
Added a future lock which prevents the anything being added or removed from or to the set when looping over the set of blocks. This fixes a nil pointer in the range loop when trying to retrieve a block from the set which was previously available but removed due to regular chain processing. Fixes #2305
-
- Mar 10, 2016
-
-
Péter Szilágyi authored
-
Zsolt Felföldi authored
-
- Mar 09, 2016
-
-
Péter Szilágyi authored
-
- Mar 08, 2016
-
-
Jeffrey Wilcke authored
Previously all blocks that were already in our chain were never re announced as potential uncle block (e.g. ChainSideEvent). This is problematic during mining where you want to gather as much possible uncles as possible increasing the profit. This is now addressed in this PR where during reorganisations of chains the old chain is regarded as uncles. Fixed #2298
-
- Feb 29, 2016
-
-
Péter Szilágyi authored
-
- Feb 21, 2016
-
-
Ricardo Catalinas Jiménez authored
As we aren't really using the standarized SHA-3
-
- Feb 18, 2016
-
-
Jeffrey Wilcke authored
Assuming the following scenario where a miner has 15% of all hashing power and the ability to exert a moderate control over the network to the point where if the attacker sees a message A, it can't stop A from propagating, but what it **can** do is send a message B and ensure that most nodes see B before A. The attacker can then selfish mine and augment selfish mining strategy by giving his own blocks an advantage. This change makes the time at which a block is received less relevant and so the level of control an attacker has over the network no longer makes a difference. This change changes the current td algorithm `B_td > C_td` to the new algorithm `B_td > C_td || B_td == C_td && rnd < 0.5`.
-
Jeffrey Wilcke authored
* Removed some strange code that didn't apply state reverting properly * Refactored code setting from vm & state transition to the executioner * Updated tests
-
Gustav Simonsson authored
* change gas cost for contract creating txs * invalidate signature with s value greater than secp256k1 N / 2 * OOG contract creation if not enough gas to store code * new difficulty adjustment algorithm * new DELEGATECALL op code
-
- Feb 16, 2016
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Bas van Kervel authored
-
- Feb 13, 2016
-
-
Jeffrey Wilcke authored
Pending logs are now filterable through the Go API. Filter API changed such that each filter type has it's own bucket and adding filter explicitly requires you specify the bucket to put it in.
-
- Feb 11, 2016
-
-
Jeffrey Wilcke authored
Implemented `runtime.Call` which uses - unlike Execute - the given state for the execution and the address of the contract you wish to execute. Unlike `Execute`, `Call` requires a config.
-
- Feb 02, 2016
-
-
Peter Pratscher authored
Integrated code review suggestions Integrated last review comments
-
- Feb 01, 2016
-
-
Péter Szilágyi authored
-
- Jan 22, 2016
-
-
Péter Szilágyi authored
-
- Jan 20, 2016
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Jan 13, 2016
-
-
Péter Szilágyi authored
-
- Jan 11, 2016
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Jan 05, 2016
-
-
Péter Szilágyi authored
-
- Jan 04, 2016
-
-
Péter Szilágyi authored
-
- Dec 18, 2015
-
-
Felix Lange authored
In order to make this happen, kill all remaining trivial uses of common/{rlp,value}.go. The non-trivial ones have been updated earlier.
-
Felix Lange authored
-
Felix Lange authored
The test chain generated by makeChainFork included invalid uncle headers, crashing the generator during the state commit. The headers were invalid because they used the iteration counter as the block number, even though makeChainFork uses a block with number > 0 as the parent. Fix this by introducing BlockGen.Number, which allows accessing the actual number of the block being generated.
-
- Dec 16, 2015
-
-
Zsolt Felföldi authored
-
- Dec 14, 2015
-
-
Bas van Kervel authored
-
- Dec 04, 2015
-
-
Péter Szilágyi authored
-
- Dec 01, 2015
-
-
Jeffrey Wilcke authored
When a chain reorganisation occurs we collect the logs that were deleted during the chain reorganisation. The removed logs are posted to the event mux indicating that those were deleted during the reorg.
-
- Nov 27, 2015
-
-
Péter Szilágyi authored
-