Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmd/geth, cmd/utils, core, rpc: renamed to blockchain | Jeffrey Wilcke | 2015-10-04 | 35 | -302/+267 |
| | | | | | | * Renamed ChainManager to BlockChain * Checkpointing is no longer required and never really properly worked when the state was corrupted. | ||||
* | cmd/evm, core/vm, test: refactored VM and core | Jeffrey Wilcke | 2015-10-04 | 39 | -1062/+946 |
| | | | | | | | | | | | | | | | | | * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * core/vm: byte code VM moved to jump table instead of switch * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * Byte code VM now shares the same code as the JITVM * Renamed Context to Contract * Changed initialiser of state transition & unexported methods * Removed the Execution object and refactor `Call`, `CallCode` & `Create` in to their own functions instead of being methods. * Removed the hard dep on the state for the VM. The VM now depends on a Database interface returned by the environment. In the process the core now depends less on the statedb by usage of the env * Moved `Log` from package `core/state` to package `core/vm`. | ||||
* | core, event/filter, xeth: refactored filter system | Jeffrey Wilcke | 2015-10-03 | 4 | -158/+162 |
| | | | | | | | Moved the filtering system from `event` to `eth/filters` package and removed the `core.Filter` object. The `filters.Filter` object now requires a `common.Database` rather than a `eth.Backend` and invokes the `core.GetBlockByX` directly rather than thru a "manager". | ||||
* | Merge pull request #1865 from obscuren/deadlock-chainmanager-fix | Jeffrey Wilcke | 2015-10-02 | 1 | -1/+3 |
|\ | | | | | core: deadlock in chainmanager after posting RemovedTransactionEvent | ||||
| * | core: deadlock in chainmanager after posting RemovedTransactionEvent | Jeffrey Wilcke | 2015-10-02 | 1 | -1/+3 |
|/ | | | | | | | | This PR solves an issue with the chain manager posting a `RemovedTransactionEvent`, the tx pool will try to acquire the chainmanager lock which has previously been locked prior to posting `RemovedTransactionEvent`. This results in a deadlock in the core. | ||||
* | Merge pull request #1405 from fjl/lean-trie | Jeffrey Wilcke | 2015-10-01 | 30 | -1059/+1515 |
|\ | | | | | core, trie: new trie | ||||
| * | trie: add merkle proof functions | Felix Lange | 2015-09-23 | 2 | -0/+261 |
| | | |||||
| * | core, core/state: batch-based state sync | Felix Lange | 2015-09-23 | 10 | -90/+90 |
| | | |||||
| * | core, trie: new trie | Felix Lange | 2015-09-23 | 20 | -953/+1110 |
| | | |||||
| * | trie: improve benchmarks | Felix Lange | 2015-09-23 | 1 | -34/+72 |
| | | |||||
* | | Merge pull request #1856 from karalabe/andorid-path-fix | Jeffrey Wilcke | 2015-10-01 | 3 | -21/+41 |
|\ \ | | | | | | | common: fix #1818, secondary datadir paths to fall back to | ||||
| * | | common: fix #1818, secondary datadir paths to fall back to | Péter Szilágyi | 2015-10-01 | 3 | -21/+41 |
| | | | |||||
* | | | Merge pull request #1859 from fjl/fix-discover-refresh-race | Jeffrey Wilcke | 2015-09-30 | 6 | -183/+199 |
|\ \ \ | | | | | | | | | p2p/discover: fix race involving the seed node iterator | ||||
| * | | | p2p/discover: ignore packet version numbers | Felix Lange | 2015-09-30 | 2 | -5/+0 |
| | | | | | | | | | | | | | | | | The strict matching can get in the way of protocol upgrades. | ||||
| * | | | p2p/discover: remove unused lastLookup field | Felix Lange | 2015-09-30 | 1 | -6/+1 |
| | | | | |||||
| * | | | p2p/discover: fix race involving the seed node iterator | Felix Lange | 2015-09-30 | 5 | -172/+198 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nodeDB.querySeeds was not safe for concurrent use but could be called concurrenty on multiple goroutines in the following case: - the table was empty - a timed refresh started - a lookup was started and initiated refresh These conditions are unlikely to coincide during normal use, but are much more likely to occur all at once when the user's machine just woke from sleep. The root cause of the issue is that querySeeds reused the same leveldb iterator until it was exhausted. This commit moves the refresh scheduling logic into its own goroutine (so only one refresh is ever active) and changes querySeeds to not use a persistent iterator. The seed node selection is now more random and ignores nodes that have not been contacted in the last 5 days. | ||||
* | | | | Merge pull request #1852 from obscuren/filter-nil-fix | Jeffrey Wilcke | 2015-09-30 | 1 | -12/+34 |
|\ \ \ \ | |_|/ / |/| | | | xeth: fixed nil pointer of filter retrieval | ||||
| * | | | xeth: fixed nil pointer of filter retrieval | Jeffrey Wilcke | 2015-09-25 | 1 | -12/+34 |
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | This fix addresses an issue with filters that were (possibly) not yet added to the filter queues but were expected. I've added additional nil checks making sure it doesn't crash and swapped the installation of the filter around so it's installed before use. Closes #1665 | ||||
* | | | Merge pull request #1854 from karalabe/badhasherror-formatting-loop | Jeffrey Wilcke | 2015-09-29 | 1 | -1/+1 |
|\ \ \ | |_|/ |/| | | core: fix a formatting loop in BadHashError | ||||
| * | | core: fix a formatting loop in BadHashError | Péter Szilágyi | 2015-09-29 | 1 | -1/+1 |
|/ / | |||||
* | | Merge pull request #1843 from karalabe/cleanup-downloader-channel | Jeffrey Wilcke | 2015-09-25 | 1 | -20/+36 |
|\ \ | | | | | | | eth/downloader: always send termination wakes, clean leftover | ||||
| * | | eth/downloader: always send termination wakes, clean leftover | Péter Szilágyi | 2015-09-23 | 1 | -20/+36 |
| | | | |||||
* | | | Merge pull request #1803 from Gustav-Simonsson/badhashes | Jeffrey Wilcke | 2015-09-24 | 3 | -2/+66 |
|\ \ \ | | | | | | | | | core: Add BadHashErr and test for BadHashes handling | ||||
| * | | | core: Add BadHashErr and test for BadHashes handling | Gustav Simonsson | 2015-09-23 | 3 | -2/+66 |
|/ / / | |||||
* | | | Merge pull request #1844 from obscuren/version-file | Jeffrey Wilcke | 2015-09-23 | 1 | -0/+1 |
|\ \ \ | | | | | | | | | VERSION: added version | ||||
| * | | | VERSION: added version | Jeffrey Wilcke | 2015-09-23 | 1 | -0/+1 |
| | |/ | |/| | |||||
* | | | Merge pull request #1842 from fjl/rpc-fix-unknown-block | Felix Lange | 2015-09-23 | 3 | -31/+24 |
|\ \ \ | |_|/ |/| | | rpc/api: don't crash for unknown blocks | ||||
| * | | rpc/api: don't crash for unknown blocks | Felix Lange | 2015-09-23 | 1 | -25/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most eth RPC calls that work with blocks crashed when the block was not found because they called Hash on a nil block. This is a regression introduced in cdc2662c409 (#1779). While here, remove the insane conversions in get*CountBy*. There is no need to construct a complete BlockRes and converting int->int64->*big.Int->[]byte->hexnum->string to format the length of a slice as hex. | ||||
| * | | cmd/geth, core: make "geth blocktest" work again | Felix Lange | 2015-09-23 | 2 | -6/+1 |
| |/ | | | | | | | | | | | | | | | | | The test genesis block was not written properly, block insertion failed immediately. While here, fix the panic when shutting down "geth blocktest" with Ctrl+C. The signal handler is now installed automatically, causing ethereum.Stop to crash because everything is already stopped. | ||||
* | | Merge pull request #1827 from Gustav-Simonsson/common_tests | Jeffrey Wilcke | 2015-09-23 | 3 | -1/+6807 |
|\ \ | |/ |/| | tests: add test for StateTests/stCallCodes.json | ||||
| * | tests: add test for StateTests/stCallCodes.json | Gustav Simonsson | 2015-09-21 | 3 | -1/+6807 |
| | | |||||
* | | Merge pull request #1835 from karalabe/make-cross | Jeffrey Wilcke | 2015-09-22 | 1 | -0/+27 |
|\ \ | | | | | | | makefile: built in cross compilation targets | ||||
| * | | makefile: built in cross compilation targets | Péter Szilágyi | 2015-09-22 | 1 | -0/+27 |
| | | | |||||
* | | | Merge pull request #1669 from obscuren/tx-pool-auto-resend | Jeffrey Wilcke | 2015-09-22 | 13 | -57/+231 |
|\ \ \ | |/ / |/| | | core, xeth: chain reorg move missing transactions to transaction pool | ||||
| * | | core, core/types: readd transactions after chain re-org | Jeffrey Wilcke | 2015-09-22 | 13 | -57/+231 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a `Difference` method to `types.Transactions` which sets the receiver to the difference of a to b (NOTE: not a **and** b). Transaction pool subscribes to RemovedTransactionEvent adding back to those potential missing from the chain. When a chain re-org occurs remove any transactions that were removed from the canonical chain during the re-org as well as the receipts that were generated in the process. Closes #1746 | ||||
* | | | cmd/geth: changed version number to 1.2.0 | Jeffrey Wilcke | 2015-09-21 | 1 | -2/+2 |
|/ / | | | | | Changed the version number of geth to 1.2.0 so that dev builds are now properly build (instead of master). Note to self; increase version number to 1.2.1 for our next actual release. | ||||
* | | Merge pull request #1822 from karalabe/contain-pow | Jeffrey Wilcke | 2015-09-21 | 4 | -62/+327 |
|\ \ | |/ |/| | core: separate and contain POW verifier, extensive tests | ||||
| * | core: separate and contain POW verifier, extensive tests | Péter Szilágyi | 2015-09-21 | 4 | -62/+327 |
|/ | |||||
* | Merge pull request #1814 from Gustav-Simonsson/common_tests | Jeffrey Wilcke | 2015-09-19 | 8 | -439/+13127 |
|\ | | | | | tests: update common test wrappers and test files | ||||
| * | tests: use lastblockhash field to validate reorgs and block headers | Gustav Simonsson | 2015-09-18 | 2 | -48/+58 |
| | | |||||
| * | tests: update common test wrappers and test files | Gustav Simonsson | 2015-09-18 | 7 | -424/+13102 |
| | | |||||
* | | Merge pull request #1817 from obscuren/nonce-fix | Jeffrey Wilcke | 2015-09-19 | 2 | -2/+21 |
|\ \ | |/ |/| | core: transaction nonce recovery | ||||
| * | core: transaction nonce recovery fix | Jeffrey Wilcke | 2015-09-18 | 2 | -2/+21 |
| | | | | | | | | | | | | | | | | When the transaction state recovery kicked in it assigned the last (incorrect) nonce to the pending state which caused transactions with the same nonce to occur. Added test for nonce recovery | ||||
* | | Merge pull request #1815 from karalabe/chain-maker-timer | Felix Lange | 2015-09-18 | 1 | -0/+11 |
|\ \ | | | | | | | core: allow modifying test-chain block times | ||||
| * | | core: allow modifying test-chain block times | Péter Szilágyi | 2015-09-17 | 1 | -0/+11 |
| | | | |||||
* | | | Merge pull request #1793 from jeffallen/typo | Felix Lange | 2015-09-18 | 1 | -18/+19 |
|\ \ \ | | | | | | | | | common: Update README.md for the current package name | ||||
| * | | | common: Update README.md for the current package name | Jeff R. Allen | 2015-09-11 | 1 | -18/+19 |
| | | | | |||||
* | | | | Merge pull request #1813 from kobigurk/develop | Felix Lange | 2015-09-18 | 1 | -1/+3 |
|\ \ \ \ | | | | | | | | | | | cmd/geth: extradata is correcly initialized with console | ||||
| * | | | | cmd/geth: extradata is correcly initialized with console | Kobi Gurkan | 2015-09-17 | 1 | -1/+3 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #1811 from bas-vk/timer-clearinterval | Felix Lange | 2015-09-18 | 1 | -1/+3 |
|\ \ \ \ | |_|_|/ |/| | | | timer bugfix when clearInterval was called from within the callback | ||||
| * | | | jsre: timer bugfix when clearInterval was called from within the callback | Bas van Kervel | 2015-09-16 | 1 | -1/+3 |
| | | | | |||||
* | | | | Merge pull request #1810 from karalabe/pure-header-verifications-2 | Jeffrey Wilcke | 2015-09-17 | 4 | -28/+26 |
|\ \ \ \ | |_|/ / |/| | | | core, eth, miner: use pure header validation | ||||
| * | | | core, eth, miner: use pure header validation | Péter Szilágyi | 2015-09-16 | 4 | -28/+26 |
| |/ / | |||||
* | | | Merge pull request #1801 from fjl/ethdb | Jeffrey Wilcke | 2015-09-16 | 26 | -125/+142 |
|\ \ \ | | | | | | | | | all: move common.Database to ethdb and add NewBatch | ||||
| * | | | ethdb: remove Flush | Felix Lange | 2015-09-15 | 4 | -51/+10 |
| | | | | |||||
| * | | | ethdb: copy stored memdb values | Felix Lange | 2015-09-15 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Storing a value in LevelDB copies the bytes, modifying the value afterwards does not affect the content of the database. This commit ensures that MemDatabase satisfies the same property. | ||||
| * | | | ethdb: add NewBatch | Felix Lange | 2015-09-15 | 3 | -0/+49 |
| | | | | |||||
| * | | | all: move common.Database to package ethdb | Felix Lange | 2015-09-15 | 24 | -75/+85 |
| | | | | |||||
* | | | | Merge pull request #1784 from karalabe/standard-sync-stats | Jeffrey Wilcke | 2015-09-16 | 8 | -251/+1174 |
|\ \ \ \ | |_|/ / |/| | | | eth, rpc: standardize the chain sync progress counters | ||||
| * | | | jsre, rpc/api: pull in new web3 and use hex numbers | Péter Szilágyi | 2015-09-15 | 3 | -187/+612 |
| | | | | |||||
| * | | | eth/downloader: header-chain order and ancestry check | Péter Szilágyi | 2015-09-15 | 3 | -7/+77 |
| | | | | |||||
| * | | | eth, rpc: standardize the chain sync progress counters | Péter Szilágyi | 2015-09-15 | 7 | -68/+496 |
| | | | | |||||
* | | | | Merge pull request #1744 from kobigurk/develop | Jeffrey Wilcke | 2015-09-16 | 1 | -1/+15 |
|\ \ \ \ | | | | | | | | | | | adds extradata flag | ||||
| * | | | | cmd/geth: adds extradata flag | Kobi Gurkan | 2015-09-16 | 1 | -1/+15 |
|/ / / / | |||||
* | | | | Merge pull request #1806 from ethersphere/solc2 | Jeffrey Wilcke | 2015-09-15 | 2 | -14/+14 |
|\ \ \ \ | |/ / / |/| | | | new solc api - late fixes | ||||
| * | | | new solc api: | zelig | 2015-09-15 | 2 | -14/+14 |
|/ / / | | | | | | | | | | | | | | | | * use legacy version matcher * optimise just a boolean flag * skipf for messages in tests | ||||
* | | | Merge pull request #1786 from ethersphere/solc | Felix Lange | 2015-09-15 | 2 | -23/+49 |
|\ \ \ | | | | | | | | | common/compiler: new solc API | ||||
| * | | | Solidity Compiler - solc new API | zelig | 2015-09-12 | 2 | -23/+49 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adapt to new compiler versioning * use compiler version as language version * implement new solc API for versions >= 0.1.[2-9][0-9]* fixes #1770 * add optimize=1 to options * backward compatibility (for now) for <= 0.1.1, and old versions (0.[2-9][0-9]*.[0-9]+) * introduce compilerOptions to ContractInfo * clean up flair, include full version string to version line and ContractInfo | ||||
* | | | Merge pull request #1797 from karalabe/ensure-ipcpath-exists | Felix Lange | 2015-09-14 | 1 | -1/+6 |
|\ \ \ | | | | | | | | | rpc/comms: fix #1795, ensure IPC path exists before binding | ||||
| * | | | rpc/comms: fix #1795, ensure IPC path exists before binding | Péter Szilágyi | 2015-09-11 | 1 | -1/+6 |
| | | | | |||||
* | | | | Merge pull request #1792 from jeffallen/uuid | Felix Lange | 2015-09-14 | 21 | -16/+237 |
|\ \ \ \ | |_|/ / |/| | | | Change go-uuid to use the current supported repository. | ||||
| * | | | Change go-uuid to use the current supported repository. | Jeff R. Allen | 2015-09-12 | 21 | -16/+237 |
| | |/ | |/| | |||||
* | | | Merge pull request #1789 from Gustav-Simonsson/core_remove_unused_functions | Jeffrey Wilcke | 2015-09-12 | 6 | -281/+0 |
|\ \ \ | | | | | | | | | core, core/vm, core/state: remove unused functions | ||||
| * | | | core, core/vm, core/state: remove unused functions | Gustav Simonsson | 2015-09-11 | 6 | -281/+0 |
| |/ / | |||||
* | | | Merge pull request #1796 from karalabe/ethash-android-support | Jeffrey Wilcke | 2015-09-12 | 6 | -3/+4 |
|\ \ \ | | | | | | | | | godeps: pull in ethash android fix | ||||
| * | | | godeps: pull in ethash android fix | Péter Szilágyi | 2015-09-11 | 6 | -3/+4 |
| | |/ | |/| | |||||
* | | | Merge pull request #1779 from karalabe/split-block-storage-3000 | Jeffrey Wilcke | 2015-09-11 | 18 | -381/+881 |
|\ \ \ | |/ / |/| | | core: split the db blocks into components, move TD out top level | ||||
| * | | core: split out TD from database and all internals | Péter Szilágyi | 2015-09-11 | 19 | -294/+590 |
| | | | |||||
| * | | core, eth: split the db blocks into headers and bodies | Péter Szilágyi | 2015-09-11 | 9 | -226/+430 |
|/ / | |||||
* | | Merge pull request #1773 from obscuren/dev-mode | Felix Lange | 2015-09-11 | 3 | -7/+42 |
|\ \ | | | | | | | cmd/geth, cmd/utils, eth: added dev mode flag | ||||
| * | | cmd/geth, cmd/utils, eth: added dev mode flag | Jeffrey Wilcke | 2015-09-09 | 3 | -7/+42 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dev mode enabled some debugging flags such as: * VM debugging mode * Simpler proof of work * Whisper enabled by default * Datadir to a tmp datadir * Maxpeers set to 0 * Gas price of 0 * Random listen port | ||||
* | | | Merge pull request #1778 from fjl/rlp-trie-changes | Jeffrey Wilcke | 2015-09-11 | 6 | -11/+413 |
|\ \ \ | |_|/ |/| | | rlp: precursor changes for trie, p2p | ||||
| * | | rlp: move ListSize to raw.go | Felix Lange | 2015-09-11 | 2 | -6/+6 |
| | | | |||||
| * | | rlp: add RawValue | Felix Lange | 2015-09-11 | 5 | -1/+39 |
| | | | |||||
| * | | rlp: add Split functions | Felix Lange | 2015-09-11 | 3 | -1/+337 |
| | | | | | | | | | | | | | | | These functions allow destructuring of raw rlp-encoded bytes without the overhead of reflection or copying. | ||||
| * | | rlp: fix encReader returning nil buffers to the pool | Felix Lange | 2015-09-11 | 2 | -4/+32 |
| |/ | | | | | | | | | | | The bug can cause crashes if Read is called after EOF has been returned. No code performs such calls right now, but hitting the bug gets more likely as rlp.EncodeToReader gets used in more places. | ||||
* | | Merge pull request #1781 from Gustav-Simonsson/state_object_copy | Felix Lange | 2015-09-10 | 2 | -0/+105 |
|\ \ | | | | | | | core/state: deleted field in StateObject Copy() and unit test | ||||
| * | | core/state: test formatting adhering to Go convention | Gustav Simonsson | 2015-09-09 | 1 | -17/+17 |
| | | | |||||
| * | | core/state: deleted field in StateObject Copy() and unit test | Gustav Simonsson | 2015-09-08 | 2 | -0/+105 |
| | | | |||||
* | | | Merge pull request #1780 from bas-vk/miner-crash | Jeffrey Wilcke | 2015-09-09 | 1 | -1/+9 |
|\ \ \ | |/ / |/| | | agent/miner Prevent the CpuAgent to be started multiple times | ||||
| * | | put unlock after lock | Bas van Kervel | 2015-09-08 | 1 | -5/+3 |
| | | | |||||
| * | | agent/miner Prevent the CpuAgent to be started multiple times | Bas van Kervel | 2015-09-08 | 1 | -2/+12 |
| |/ | |||||
* | | Merge pull request #1777 from hectorchu/develop | Péter Szilágyi | 2015-09-08 | 1 | -2/+2 |
|\ \ | | | | | | | rpc/comms: fix bug attaching the console over http | ||||
| * | | rpc/comms: fix bug attaching the console over http | Hector Chu | 2015-09-07 | 1 | -2/+2 |
| |/ | |||||
* | | Merge pull request #1774 from bas-vk/console-crash | Péter Szilágyi | 2015-09-08 | 1 | -1/+1 |
|\ \ | |/ |/| | cmd/geth Autocompletion bugfix which let the console crash | ||||
| * | cmd/geth Autocompletion bugfix which let the console crash | Bas van Kervel | 2015-09-06 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #1752 from karalabe/fix-eth61-test | Felix Lange | 2015-09-03 | 1 | -1/+3 |
|\ | | | | | eth/downloader: fix race causing occasional test failure | ||||
| * | eth/downloader: fix race causing occasional test failure | Péter Szilágyi | 2015-09-01 | 1 | -1/+3 |
| | | |||||
* | | Merge pull request #1764 from kobigurk/honor_ipc_datadir | Péter Szilágyi | 2015-09-03 | 1 | -1/+1 |
|\ \ | | | | | | | honors datadir when attaching | ||||
| * | | cmd/geth: honor datadir when attaching | Kobi Gurkan | 2015-09-03 | 1 | -1/+1 |
|/ / | |||||
* | | Merge pull request #1761 from CJentzsch/patch-3 | Jeffrey Wilcke | 2015-09-03 | 1 | -1/+1 |
|\ \ | | | | | | | fix block time issue | ||||
| * | | fix block time issue | Christoph Jentzsch | 2015-09-03 | 1 | -1/+1 |
|/ / | | | | | | | | | | | | | currently, under normal circumstances, you always set the timestamp to previous.Time() + 1. credits to https://www.reddit.com/r/ethereum/comments/3jcs5r/code_avg_block_time_vs_difficulty_adjustment/cuoi4op style | ||||
* | | Merge pull request #1726 from Gustav-Simonsson/update_tests | Felix Lange | 2015-09-03 | 750 | -1865/+2305 |
|\ \ | | | | | | | Add TestBcForkUncle tests & update JSON files | ||||
| * | | Add TestBcForkUncleTests and update JSON files | Gustav Simonsson | 2015-08-31 | 750 | -1865/+2305 |
| |/ | |||||
* | | Merge pull request #1755 from fjl/coinbase | Gustav Simonsson | 2015-09-02 | 2 | -24/+27 |
|\ \ | | | | | | | core: improve block gas tracking | ||||
| * | | core: improve block gas tracking | Felix Lange | 2015-09-02 | 2 | -24/+27 |
|/ / | |||||
* | | Merge pull request #1751 from maran/fix_filters | Felix Lange | 2015-09-02 | 1 | -3/+3 |
|\ \ | | | | | | | core: Filter on addresses should work as an OR not an AND. | ||||
| * | | Filter on addresses should work as an OR not an AND. | Maran | 2015-09-01 | 1 | -3/+3 |
| | | | |||||
* | | | Merge pull request #1745 from mrdomino/obsd-build-master | Felix Lange | 2015-09-02 | 9 | -4/+20 |
|\ \ \ | |_|/ |/| | | Pull in ethash and go-isatty updates | ||||
| * | | Pull in ethash and go-isatty updates | Steven Dee | 2015-09-01 | 9 | -4/+20 |
| |/ | | | | | | | Fixes build on OpenBSD. | ||||
* | | Merge pull request #1742 from fjl/rpc-receipt-root | Felix Lange | 2015-08-31 | 1 | -0/+6 |
|\ \ | | | | | | | rpc: add receiptRoot to getBlock* responses | ||||
| * | | rpc: add receiptRoot to getBlock* responses | Felix Lange | 2015-08-29 | 1 | -0/+6 |
| | | | | | | | | | | | | Fixes #1679 | ||||
* | | | Merge pull request #1734 from fjl/ldflags-warning-go1.5 | Felix Lange | 2015-08-31 | 1 | -1/+6 |
|\ \ \ | |_|/ |/| | | build: avoid -X separator warning with Go >= 1.5 | ||||
| * | | build: avoid -X separator warning with Go >= 1.5 | Felix Lange | 2015-08-27 | 1 | -1/+6 |
| |/ | |||||
* | | Merge pull request #1724 from Gustav-Simonsson/get_work | Felix Lange | 2015-08-29 | 4 | -4/+27 |
|\ \ | | | | | | | rpc: return error code for eth_getWork when no work ready | ||||
| * | | Improve error string and remove unneeded else clause | Gustav Simonsson | 2015-08-28 | 3 | -7/+6 |
| | | | |||||
| * | | rpc: return error code for eth_getWork when no work ready | Gustav Simonsson | 2015-08-26 | 4 | -4/+28 |
| | | | |||||
* | | | Merge pull request #1739 from bas-vk/empty-password | Felix Lange | 2015-08-28 | 2 | -4/+4 |
|\ \ \ | |_|/ |/| | | rpc/api allow empty password | ||||
| * | | rpc/api allow empty password | Bas van Kervel | 2015-08-28 | 2 | -4/+4 |
|/ / | |||||
* | | Merge pull request #1701 from karalabe/eth62-sync-rebase | Felix Lange | 2015-08-27 | 23 | -1274/+3347 |
|\ \ | | | | | | | eth: implement eth/62 synchronization logic | ||||
| * | | eth: update metrics collection to handle eth/62 algos | Péter Szilágyi | 2015-08-25 | 7 | -36/+160 |
| | | | |||||
| * | | eth: port the synchronisation algo to eth/62 | Péter Szilágyi | 2015-08-25 | 10 | -341/+2010 |
| | | | |||||
| * | | eth: kill off protocol eth/60 in preparation for eth/62 | Péter Szilágyi | 2015-08-24 | 6 | -804/+28 |
| | | | |||||
| * | | eth, eth/downloader: handle header requests, table driven proto tests | Péter Szilágyi | 2015-08-24 | 14 | -254/+1209 |
| | | | |||||
| * | | eth, metrics, p2p: prepare metrics and net packets to eth/62 | Péter Szilágyi | 2015-08-21 | 7 | -48/+149 |
| | | | |||||
* | | | Merge pull request #1717 from karalabe/forward-solidity-errors | Felix Lange | 2015-08-27 | 1 | -58/+46 |
|\ \ \ | | | | | | | | | common/compiler: fix #1598, expose solidity errors | ||||
| * | | | common/compiler: fix #1598, expose solidity errors | Péter Szilágyi | 2015-08-26 | 1 | -58/+46 |
| | |/ | |/| | |||||
* | | | Merge pull request #1718 from caktux/develop | Felix Lange | 2015-08-27 | 1 | -0/+1 |
|\ \ \ | | | | | | | | | add missing shh_getMessages to RPC mappings | ||||
| * | | | add missing shh_getMessages to RPC mappings | caktux | 2015-08-26 | 1 | -0/+1 |
| |/ / | |||||
* | | | Merge pull request #1721 from bas-vk/console-error-parsing | Felix Lange | 2015-08-27 | 2 | -8/+7 |
|\ \ \ | | | | | | | | | Improved console error handling | ||||
| * | | | bugfix console error handling | Bas van Kervel | 2015-08-26 | 2 | -8/+7 |
| |/ / | |||||
* | | | Merge pull request #1722 from bas-vk/remote-deleteaccount | Felix Lange | 2015-08-27 | 3 | -47/+0 |
|\ \ \ | |/ / |/| | | Remove personal.deleteAccount from RPC interface | ||||
| * | | rpc/api - remove personal.deleteAccount from RPC interface | Bas van Kervel | 2015-08-26 | 3 | -47/+0 |
|/ / | |||||
* | | Merge pull request #1711 from Gustav-Simonsson/timestamp_big_int | Felix Lange | 2015-08-25 | 21 | -43/+380 |
|\ \ | | | | | | | Add tests for uncle timestamps and refactor timestamp type | ||||
| * | | Add tests for uncle timestamps and refactor timestamp type | Gustav Simonsson | 2015-08-25 | 21 | -43/+380 |
| |/ | |||||
* | | Merge pull request #1710 from bas-vk/useragent | Felix Lange | 2015-08-25 | 4 | -20/+48 |
|\ \ | |/ |/| | user agent messages were dumped in some cases | ||||
| * | Set ipc channel as user agent client | Bas van Kervel | 2015-08-24 | 4 | -20/+48 |
|/ | |||||
* | cmd/geth: bumped version 1.1.0 | Jeffrey Wilcke | 2015-08-21 | 1 | -3/+3 |
| | |||||
* | remove 0x | Jeffrey Wilcke | 2015-08-21 | 1 | -1/+1 |
| | |||||
* | canary update | Jeffrey Wilcke | 2015-08-21 | 1 | -4/+4 |
| | |||||
* | core, tests: Double SUICIDE fix | Jeffrey Wilcke | 2015-08-21 | 5 | -165/+785 |
| | |||||
* | cmd/geth: bumped version 1.0.3 | Jeffrey Wilcke | 2015-08-20 | 1 | -2/+2 |
| | |||||
* | geth: bumped version 1.0.2 | Jeffrey Wilcke | 2015-08-20 | 1 | -2/+2 |
| | |||||
* | Merge pull request #1694 from obscuren/hide-fdtrack | Jeffrey Wilcke | 2015-08-20 | 15 | -314/+7 |
|\ | | | | | fdtrack: hide message | ||||
| * | Revert "fdtrack: temporary hack for tracking file descriptor usage" | Jeffrey Wilcke | 2015-08-20 | 15 | -314/+7 |
| | | | | | | | | This reverts commit 5c949d3b3ba81ea0563575b19a7b148aeac4bf61. | ||||
* | | Merge pull request #1652 from bas-vk/autoreconnect | Jeffrey Wilcke | 2015-08-20 | 1 | -3/+5 |
|\ \ | | | | | | | rpc/comms: reconnect ipc client after write error | ||||
| * | | rpc/comms reconnect ipc client after write error | Bas van Kervel | 2015-08-20 | 1 | -3/+5 |
| |/ | |||||
* | | Merge pull request #1689 from fjl/discover-ignore-temp-errors | Jeffrey Wilcke | 2015-08-20 | 4 | -11/+51 |
|\ \ | |/ |/| | p2p, p2p/discover: small fixes | ||||
| * | p2p/discover: don't attempt to replace nodes that are being replaced | Felix Lange | 2015-08-19 | 2 | -4/+15 |
| | | | | | | | | | | | | | | | | PR #1621 changed Table locking so the mutex is not held while a contested node is being pinged. If multiple nodes ping the local node during this time window, multiple ping packets will be sent to the contested node. The changes in this commit prevent multiple packets by tracking whether the node is being replaced. | ||||
| * | p2p: continue listening after temporary errors | Felix Lange | 2015-08-19 | 1 | -6/+25 |
| | | |||||
| * | p2p/discover: continue reading after temporary errors | Felix Lange | 2015-08-19 | 1 | -1/+11 |
| | | | | | | | | Might solve #1579 | ||||
* | | Merge pull request #1688 from karalabe/fix-double-imports | Jeffrey Wilcke | 2015-08-19 | 1 | -2/+4 |
|\ \ | | | | | | | eth: fix an issue with pulling and inserting blocks twice | ||||
| * | | eth: fix an issue with pulling and inserting blocks twice | Péter Szilágyi | 2015-08-19 | 1 | -2/+4 |
| |/ | |||||
* | | Merge pull request #1680 from maran/fix_removedb | Jeffrey Wilcke | 2015-08-19 | 1 | -4/+3 |
|\ \ | |/ |/| | cmd/geth: Fix chain purging from cmd line | ||||
| * | cmd/geth: Fix chain purging from cmd line | Maran | 2015-08-18 | 1 | -4/+3 |
| | | |||||
* | | Merge pull request #1454 from ethersphere/frozen-cryptoclean | Jeffrey Wilcke | 2015-08-19 | 4 | -1878/+0 |
|\ \ | | | | | | | crypto: remove obsolete code | ||||
| * | | crypto: remove obsolete key files | zelig | 2015-08-18 | 4 | -1878/+0 |
| |/ | |||||
* | | Merge pull request #1683 from ethereum/travis | Jeffrey Wilcke | 2015-08-19 | 2 | -24/+13 |
|\ \ | | | | | | | Switch from Coveralls to Codecov code coverage service | ||||
| * | | Codecov integration | Taylor Gerring | 2015-08-19 | 2 | -24/+13 |
| | | | |||||
* | | | Merge pull request #1682 from obscuren/readme-improvements | Jeffrey Wilcke | 2015-08-19 | 2 | -25/+29 |
|\ \ \ | |/ / |/| | | Updated README, Added CONTRIBUTING | ||||
| * | | Updated README, Added CONTRIBUTING | Jeffrey Wilcke | 2015-08-19 | 2 | -25/+29 |
| | | | |||||
* | | | Merge pull request #1681 from obscuren/miner-receipt-fix | Jeffrey Wilcke | 2015-08-19 | 4 | -9/+14 |
|\ \ \ | |_|/ |/| | | core, miner: write miner receipts | ||||
| * | | core, miner: write miner receipts | Jeffrey Wilcke | 2015-08-19 | 4 | -9/+14 |
| |/ | |||||
* | | Merge pull request #1675 from obscuren/submithashrate-change | Jeffrey Wilcke | 2015-08-18 | 1 | -2/+2 |
|\ \ | | | | | | | rpc/api: return boolean value for eth_submitHashrate | ||||
| * | | rpc/api: return boolean value for eth_submitHashrate | Jeffrey Wilcke | 2015-08-17 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #1673 from karalabe/fix-api-xeth-responses | Jeffrey Wilcke | 2015-08-18 | 1 | -5/+13 |
|\ \ \ | |_|/ |/| | | rpc: update the xeth over RPC API to use the success/failure messages | ||||
| * | | rpc: update the xeth over RPC API to use the success/failure messages | Péter Szilágyi | 2015-08-17 | 1 | -5/+13 |
| | | | |||||
* | | | Merge pull request #1627 from zsfelfoldi/gpo | Jeffrey Wilcke | 2015-08-17 | 1 | -10/+13 |
|\ \ \ | | | | | | | | | GPO update | ||||
| * | | | GPO update | zsfelfoldi | 2015-08-17 | 1 | -10/+13 |
| | | | | |||||
* | | | | Merge pull request #1649 from maran/pending_tx_response | Jeffrey Wilcke | 2015-08-17 | 1 | -8/+8 |
|\ \ \ \ | | | | | | | | | | | rpc/api: format pendingTx response. Fixes #1648 | ||||
| * | | | | rpc/api: format pendingTx response. Fixes #1648 | Maran | 2015-08-16 | 1 | -8/+8 |
| | | | | | |||||
* | | | | | Merge pull request #1674 from tgerring/bootnodes | Jeffrey Wilcke | 2015-08-17 | 1 | -3/+4 |
|\ \ \ \ \ | | | | | | | | | | | | | Added SG bootnode | ||||
| * | | | | | Update CPP pubkey | Taylor Gerring | 2015-08-17 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Added SG bootnode | Taylor Gerring | 2015-08-17 | 1 | -2/+3 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge pull request #1667 from fjl/pretty-printer-improvements | Jeffrey Wilcke | 2015-08-17 | 2 | -6/+18 |
|\ \ \ \ \ | |/ / / / |/| | | | | jsre: pretty printer improvements | ||||
| * | | | | jsre: fix annoying indentation when printing arrays of objects | Felix Lange | 2015-08-16 | 1 | -6/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pretty printer, dumb as it is, printed arrays of objects as [{ ... }] With this change, they now print as: [{ ... }] | ||||
| * | | | | jsre: bind the pretty printer to "inspect" in JS | Felix Lange | 2015-08-16 | 2 | -0/+9 |
| | | | | | |||||
* | | | | | Merge pull request #1654 from obscuren/call-gas | Jeffrey Wilcke | 2015-08-17 | 1 | -5/+9 |
|\ \ \ \ \ | | | | | | | | | | | | | xeth: call fix when doing 'create'-like calls | ||||
| * | | | | | xeth: max gas limit | Jeffrey Wilcke | 2015-08-16 | 1 | -5/+9 |
| | |_|_|/ | |/| | | | |||||
* | | | | | Merge pull request #1663 from obscuren/issue-1662 | Jeffrey Wilcke | 2015-08-16 | 1 | -4/+4 |
|\ \ \ \ \ | |_|/ / / |/| | | | | xeth: added a transact mu | ||||
| * | | | | xeth: added a transact mu | Jeffrey Wilcke | 2015-08-15 | 1 | -4/+4 |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a transact mutex. The transact mutex will fix an issue where transactions were created with the same nonce resulting in some transactions being dropped. This happened when two concurrent calls would call the `Transact` method (which is OK) which would both call `GetNonce`. While the managed is thread safe it does not help us in this case. | ||||
* | | | | Merge pull request #1659 from bas-vk/exec-output | Jeffrey Wilcke | 2015-08-15 | 1 | -6/+1 |
|\ \ \ \ | |/ / / |/| | | | Javascript --exec output | ||||
| * | | | main print console output for js statement given by the exec argument | Bas van Kervel | 2015-08-14 | 1 | -6/+1 |
| | | | | |||||
* | | | | Merge pull request #1658 from bas-vk/liner-ctrl-c | Jeffrey Wilcke | 2015-08-14 | 1 | -0/+11 |
|\ \ \ \ | | | | | | | | | | | Clear current line on ctrl-C | ||||
| * | | | | main clear current line on ctrl-C | Bas van Kervel | 2015-08-14 | 1 | -0/+11 |
| | | | | | |||||
* | | | | | Merge pull request #1642 from ethereum/fix-js-console-windows | Jeffrey Wilcke | 2015-08-14 | 27 | -872/+1941 |
|\ \ \ \ \ | | |/ / / | |/| | | | cmd/geth, jsre: restore command line editing on windows | ||||
| * | | | | cmd/geth, jsre: restore command line editing on windows | Felix Lange | 2015-08-12 | 27 | -872/+1941 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #856 broke command line editing by wrapping stdout with a filter that interprets ANSI escape sequences to fix colored printing on windows. Implement the printer in Go instead so it can do its own platform-dependent coloring. As a nice side effect, the JS console is now noticeably more responsive when printing results. Fixes #1608 Fixes #1612 | ||||
* | | | | | Merge pull request #1655 from obscuren/db-merge-fix | Jeffrey Wilcke | 2015-08-14 | 3 | -21/+19 |
|\ \ \ \ \ | |_|/ / / |/| | | | | eth, trie: removed key prefixing from state entries & merge db fix | ||||
| * | | | | eth, trie: removed key prefixing from state entries & merge db fix | Jeffrey Wilcke | 2015-08-14 | 3 | -21/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed database merge strategy to use the correct database. Due to a copy paste fail when doing type evaluation the same database was being iterated (chain), all others were ignored. Removed state prefixing because {H(code): code} is stored in the same database as the rest of the state. | ||||
* | | | | | Merge pull request #1635 from bas-vk/useragent | Jeffrey Wilcke | 2015-08-14 | 19 | -88/+361 |
|\ \ \ \ \ | | | | | | | | | | | | | support for user agents | ||||
| * | | | | | support for user agents | Bas van Kervel | 2015-08-12 | 19 | -88/+361 |
| | | | | | | |||||
* | | | | | | Merge pull request #1638 from obscuren/jit-fixes | Jeffrey Wilcke | 2015-08-14 | 12 | -41/+34 |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | core/vm: fixed jit error & added inline docs | ||||
| * | | | | | cmd/evm, core/vm, tests: changed DisableVm to EnableVm | Jeffrey Wilcke | 2015-08-12 | 10 | -30/+20 |
| | | | | | | |||||
| * | | | | | core/vm: fixed jit error & added inline docs | Jeffrey Wilcke | 2015-08-11 | 2 | -11/+14 |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | opNumber did not create a new big int which could lead to the block's number being modified. | ||||
* | | | | | Merge pull request #1470 from ebuchman/encHandshake | Felix Lange | 2015-08-13 | 1 | -4/+12 |
|\ \ \ \ \ | | | | | | | | | | | | | p2p: validate recovered ephemeral pubkey | ||||
| * | | | | | p2p: validate recovered ephemeral pubkey against checksum in decodeAuthMsg | Ethan Buchman | 2015-07-14 | 1 | -4/+12 |
| | | | | | | |||||
* | | | | | | Merge pull request #1651 from karalabe/rlp-boolean-support | Felix Lange | 2015-08-13 | 4 | -0/+53 |
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | rlp: boolean support | ||||
| * | | | | | rlp: add support for boolean encoding/decoding | Péter Szilágyi | 2015-08-13 | 4 | -0/+53 |
|/ / / / / | |||||
* | | | | | Merge pull request #1647 from fjl/fix-disc-reason | Felix Lange | 2015-08-13 | 1 | -1/+1 |
|\ \ \ \ \ | | | | | | | | | | | | | p2p: fix value of DiscSubprotocolError | ||||
| * | | | | | p2p: fix value of DiscSubprotocolError | Felix Lange | 2015-08-12 | 1 | -1/+1 |
| | |_|/ / | |/| | | | | | | | | | | | | | We had the wrong value (12) since forever. | ||||
* | | | | | Merge pull request #1646 from fjl/fix-client-identifier | Felix Lange | 2015-08-12 | 1 | -1/+1 |
|\ \ \ \ \ | |/ / / / |/| | | | | cmd/geth: remove spaces in client identifier | ||||
| * | | | | cmd/geth: remove spaces in client identifier | Felix Lange | 2015-08-12 | 1 | -1/+1 |
|/ / / / | |||||
* | | | | Merge pull request #1621 from ethereum/fix-discover-hangs | Jeffrey Wilcke | 2015-08-12 | 4 | -83/+197 |
|\ \ \ \ | | | | | | | | | | | p2p/discover: fix two major bugs in reply packet handling | ||||
| * | | | | p2p/discover: fix UDP reply packet timeout handling | Felix Lange | 2015-08-11 | 2 | -31/+120 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the timeout fired (even just nanoseconds) before the deadline of the next pending reply, the timer was not rescheduled. The timer would've been rescheduled anyway once the next packet was sent, but there were cases where no next packet could ever be sent due to the locking issue fixed in the previous commit. As timing-related bugs go, this issue had been present for a long time and I could never reproduce it. The test added in this commit did reproduce the issue on about one out of 15 runs. | ||||
| * | | | | p2p/discover: unlock the table during ping replacement | Felix Lange | 2015-08-11 | 3 | -52/+77 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Table.mutex was being held while waiting for a reply packet, which effectively made many parts of the whole stack block on that packet, including the net_peerCount RPC call. | ||||
* | | | | | Merge pull request #1641 from obscuren/web3-update | Jeffrey Wilcke | 2015-08-11 | 1 | -931/+2100 |
|\ \ \ \ \ | | | | | | | | | | | | | web3: updated | ||||
| * | | | | | web3: updated | Jeffrey Wilcke | 2015-08-11 | 1 | -931/+2100 |
|/ / / / / | |||||
* | | | | | Merge pull request #1640 from obscuren/trace-flag-ethtest | Jeffrey Wilcke | 2015-08-11 | 1 | -1/+7 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | cmd/ethtest: added trace flag for debugging | ||||
| * | | | | cmd/ethtest: added trace flag for debugging | Jeffrey Wilcke | 2015-08-11 | 1 | -1/+7 |
|/ / / / | |||||
* | | | | Merge pull request #1604 from obscuren/db-merge | Jeffrey Wilcke | 2015-08-09 | 21 | -187/+223 |
|\ \ \ \ | | | | | | | | | | | core, eth, trie, xeth: merged state, chain, extra databases in one | ||||
| * | | | | core, eth, trie, xeth: merged state, chain, extra databases in one | Jeffrey Wilcke | 2015-08-08 | 21 | -187/+223 |
| | | | | | |||||
* | | | | | Merge pull request #1611 from obscuren/expdiff-olympic-fix | Jeffrey Wilcke | 2015-08-09 | 2 | -2/+4 |
|\ \ \ \ \ | |_|_|_|/ |/| | | | | cmd/utils, core: disable exp diff for olympic net | ||||
| * | | | | cmd/utils, core: disable exp diff for olympic net | Jeffrey Wilcke | 2015-08-06 | 2 | -2/+4 |
| | | | | | |||||
* | | | | | Merge pull request #1626 from obscuren/defaults-fix | Jeffrey Wilcke | 2015-08-09 | 2 | -3/+4 |
|\ \ \ \ \ | | | | | | | | | | | | | cmd/geth, core/vm: setup vm settings and defaulted JIT disabled | ||||
| * | | | | | cmd/geth, core/vm: setup vm settings and defaulted JIT disabled | Jeffrey Wilcke | 2015-08-09 | 2 | -3/+4 |
|/ / / / / | |||||
* | | | | | Merge pull request #1490 from obscuren/jit-vm | Jeffrey Wilcke | 2015-08-08 | 23 | -100/+1569 |
|\ \ \ \ \ | | | | | | | | | | | | | core/vm: jit vm | ||||
| * | | | | | core/vm: reduced big int allocations | Jeffrey Wilcke | 2015-08-07 | 4 | -123/+78 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduced big int allocation by making stack items modifiable. Instead of adding items such as `common.Big0` to the stack, `new(big.Int)` is added instead. One must expect that any item that is added to the stack might change. | ||||
| * | | | | | core, tests: reduced state copy by N calls | Jeffrey Wilcke | 2015-08-07 | 9 | -18/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduced the amount of state copied that are required by N calls by doing a balance check prior to any state modifications. | ||||
| * | | | | | core/vm, tests: implemented semi-jit vm | Jeffrey Wilcke | 2015-08-07 | 19 | -79/+1572 |
| | |_|/ / | |/| | | | | | | | | | | | | | * changed stack and removed stack ptr. Let go decide on slice reuse. | ||||
* | | | | | Merge pull request #1620 from caktux/develop | Jeffrey Wilcke | 2015-08-08 | 1 | -1/+1 |
|\ \ \ \ \ | | | | | | | | | | | | | string version for build server | ||||
| * | | | | | string version for build server | caktux | 2015-08-08 | 1 | -1/+1 |
|/ / / / / | |||||
* | | | | | Merge pull request #1615 from obscuren/contract-addr-fix | Jeffrey Wilcke | 2015-08-07 | 1 | -1/+1 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | xeth: fixed contract addr check | ||||
| * | | | | xeth: fixed contract addr check | Jeffrey Wilcke | 2015-08-07 | 1 | -1/+1 |
|/ / / / | |||||
* | | | | Merge pull request #1595 from obscuren/extra-data | Jeffrey Wilcke | 2015-08-07 | 4 | -16/+42 |
|\ \ \ \ | | | | | | | | | | | cmd/geth, eth: added canonical extra data | ||||
| * | | | | miner, rpc: added length check for extra data | Jeffrey Wilcke | 2015-08-07 | 2 | -7/+10 |
| | | | | | |||||
| * | | | | cmd/geth, eth: added canonical extra data | Jeffrey Wilcke | 2015-08-07 | 2 | -9/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Implemented canonical extra data according to https://github.com/ethereum/wiki/wiki/Extra-Data | ||||
* | | | | | Merge pull request #1614 from obscuren/web3-finite-fix | Jeffrey Wilcke | 2015-08-07 | 1 | -2/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | web3: regression. Fixes #1613 | ||||
| * | | | | | web3: regression. Fixes #1613 | Jeffrey Wilcke | 2015-08-07 | 1 | -2/+2 |
| |/ / / / | |||||
* | | | | | Merge pull request #1596 from obscuren/submit-hashrate | Jeffrey Wilcke | 2015-08-07 | 4 | -4/+85 |
|\ \ \ \ \ | |/ / / / |/| | | | | miner, rpc: added submit hashrate for remote agents | ||||
| * | | | | miner, rpc: added submit hashrate for remote agents | Jeffrey Wilcke | 2015-08-06 | 4 | -4/+85 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #1610 from obscuren/address-check | Jeffrey Wilcke | 2015-08-07 | 2 | -0/+37 |
|\ \ \ \ | |_|/ / |/| | | | xeth: added address hex check and length check | ||||
| * | | | xeth: added address hex check and length check | Jeffrey Wilcke | 2015-08-07 | 2 | -0/+37 |
|/ / / | |||||
* | | | Merge pull request #1600 from ethereum/fix-tests-windows | Jeffrey Wilcke | 2015-08-07 | 14 | -96/+59 |
|\ \ \ | | | | | | | | | Fix tests on windows | ||||
| * | | | .gitattributes: add | Felix Lange | 2015-08-06 | 1 | -0/+2 |
| | | | | |||||
| * | | | p2p/nat: disable UPnP test on windows | Felix Lange | 2015-08-06 | 1 | -0/+5 |
| | | | | |||||
| * | | | common/compiler, common/docserver, jsre: fix tests on windows | Felix Lange | 2015-08-06 | 4 | -17/+38 |
| | | | | |||||
| * | | | cmd/utils: fix path expansion on windows | Felix Lange | 2015-08-06 | 2 | -10/+4 |
| | | | | |||||
| * | | | common: remove windows path functions | Felix Lange | 2015-08-06 | 4 | -65/+2 |
| | | | | | | | | | | | | | | | | They were unused and their tests failed on Windows. | ||||
| * | | | p2p/discover: close Table during testing | Felix Lange | 2015-08-06 | 2 | -4/+8 |
| | | | | | | | | | | | | | | | | Not closing the table used to be fine, but now the table has a database. | ||||
* | | | | Merge pull request #1603 from ebuchman/trie_hex_fix | Jeffrey Wilcke | 2015-08-07 | 2 | -24/+70 |
|\ \ \ \ | | | | | | | | | | | trie: hex fix | ||||
| * | | | | trie: run codec tests, add benchmarks, faster | Ethan Buchman | 2015-08-07 | 2 | -24/+70 |
|/ / / / | |||||
* | | | | Merge pull request #1594 from ebuchman/trie_hex_fix | Jeffrey Wilcke | 2015-08-06 | 5 | -39/+30 |
|\ \ \ \ | |_|/ / |/| | | | faster hex-prefix codec and string -> []byte | ||||
| * | | | faster hex-prefix codec and string -> []byte | Ethan Buchman | 2015-08-06 | 5 | -39/+30 |
| | | | | |||||
* | | | | Merge branch 'develop'v1.0.1 | Jeffrey Wilcke | 2015-08-06 | 1 | -1/+1 |
|\ \ \ \ | |||||
| * | | | | fake commit for build server :( | Jeffrey Wilcke | 2015-08-06 | 1 | -1/+1 |
| |/ / / | |||||
* | | | | Merge branch 'develop' | Jeffrey Wilcke | 2015-08-06 | 1 | -1/+1 |
|\| | | | |||||
| * | | | cmd/geth: bumped version number | Jeffrey Wilcke | 2015-08-06 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge branch 'develop' | Jeffrey Wilcke | 2015-08-06 | 1115 | -11942/+12520 |
|\| | | | |||||
| * | | | Merge pull request #1583 from obscuren/miner-price-order | Jeffrey Wilcke | 2015-08-06 | 2 | -1/+53 |
| |\ \ \ | | |/ / | |/| | | miner, core: sort txs by price, nonce | ||||
| | * | | miner, core: sort txs by price, nonce | Jeffrey Wilcke | 2015-08-05 | 2 | -1/+53 |
| |/ / |