Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Version bump | obscuren | 2014-10-27 | 1 | -1/+1 |
* | Do not return error on VM exception | obscuren | 2014-10-27 | 1 | -24/+12 |
* | Return erroneous txs (so we can remove them from the pool) | obscuren | 2014-10-27 | 3 | -7/+36 |
* | increased default gas from 500 to 5000 | obscuren | 2014-10-27 | 1 | -1/+1 |
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2014-10-27 | 21 | -0/+3019 |
|\ | |||||
| * | Merge pull request #152 from ethersphere/p2p | Viktor TrĂ³n | 2014-10-24 | 19 | -0/+3015 |
| |\ | |||||
| | * | initial commit of p2p package | zelig | 2014-10-23 | 19 | -0/+3015 |
| * | | ethutil: re-add build constraints in script*.go (fixes #151) | Felix Lange | 2014-10-24 | 2 | -0/+4 |
| |/ | |||||
* | | events should be set prior to calling mainloop | obscuren | 2014-10-27 | 3 | -6/+6 |
* | | Added generic add balance method | obscuren | 2014-10-27 | 1 | -0/+7 |
* | | Fixed bloom | obscuren | 2014-10-27 | 1 | -2/+2 |
* | | Implemented LOG. Closes #159 | obscuren | 2014-10-27 | 15 | -11/+81 |
* | | Implemented new bloom filter. Closes #156 | obscuren | 2014-10-27 | 1 | -0/+38 |
* | | Removed unnecessary code. | obscuren | 2014-10-27 | 1 | -3/+0 |
|/ | |||||
* | Merge pull request #150 from fjl/develop | Jeffrey Wilcke | 2014-10-23 | 251 | -218/+36358 |
|\ | |||||
| * | cmd/*: add license headers | Felix Lange | 2014-10-23 | 26 | -0/+442 |
| * | fix 'go get' commands in after the move to cmd/ | Felix Lange | 2014-10-23 | 1 | -2/+2 |
| * | Merge eth-go repository into go-ethereum | Felix Lange | 2014-10-23 | 246 | -100/+35798 |
|/| | |||||
| * | Chnged to use GetOp instead & added error + checking | obscuren | 2014-10-23 | 4 | -6/+58 |
| * | Update to HEAD tests | obscuren | 2014-10-23 | 11 | -314/+5 |
| * | All Stack requirements are now checked prior to reduring gas. | obscuren | 2014-10-23 | 1 | -37/+19 |
| * | Updated the VM & VM tests | obscuren | 2014-10-23 | 15 | -44/+30 |
| * | Do not set error on recover | obscuren | 2014-10-23 | 1 | -2/+3 |
| * | Updated tests-subtree | obscuren | 2014-10-22 | 14 | -2/+446 |
| * | added a transfer method to vm env | obscuren | 2014-10-22 | 9 | -36/+59 |
| * | Procotol version bump for uncle list change | obscuren | 2014-10-21 | 1 | -1/+1 |
| * | Empty string for uncle | obscuren | 2014-10-21 | 2 | -6/+5 |
| * | PoC7 Net | obscuren | 2014-10-21 | 7 | -411/+38 |
| * | WIP RPC interface | obscuren | 2014-10-21 | 5 | -0/+487 |
| * | Renamed block_chain to chain_manager | obscuren | 2014-10-20 | 14 | -113/+77 |
| * | moved | obscuren | 2014-10-19 | 22 | -9/+9 |
| * | Added tests as subtree | obscuren | 2014-10-19 | 22 | -20/+13365 |
| * | Readers | obscuren | 2014-10-19 | 3 | -27/+44 |
| * | Travis bumped to 1.3 | obscuren | 2014-10-18 | 1 | -1/+1 |
| * | Re-enabled Travis | obscuren | 2014-10-18 | 1 | -1/+2 |
| * | Reflect changed to eth/vm | obscuren | 2014-10-18 | 2 | -4/+4 |
| * | Moved ethvm => vm | obscuren | 2014-10-18 | 16 | -23/+24 |
| * | Using proper naming scheme. Fixes #63 | obscuren | 2014-10-18 | 2 | -4/+0 |
| * | Moved Filter's wrapping functions to their own util package. Fixes #61 | obscuren | 2014-10-18 | 3 | -95/+122 |
| * | Merge pull request #62 from fjl/fuck | Jeffrey Wilcke | 2014-10-18 | 1 | -5/+0 |
| |\ | |||||
| | * | tests/vm: fix syntax | Felix Lange | 2014-10-17 | 1 | -5/+0 |
| |/ | |||||
| * | Merge pull request #59 from fjl/feature/raceless-ethlog | Jeffrey Wilcke | 2014-10-17 | 7 | -210/+254 |
| |\ | |||||
| | * | ethlog: fix typo in documentation | Felix Lange | 2014-10-17 | 1 | -1/+1 |
| | * | ethlog: fix concurrency | Felix Lange | 2014-10-17 | 1 | -38/+60 |
| | * | ethlog: simplify LogSystem interface | Felix Lange | 2014-10-17 | 2 | -60/+17 |
| | * | ethlog: add test for '%' in log message | Felix Lange | 2014-10-17 | 1 | -2/+2 |
| | * | ethvm, tests/*: use log level constants | Felix Lange | 2014-10-17 | 3 | -8/+12 |
| | * | ethlog: use Godoc for code examples in documentation | Felix Lange | 2014-10-17 | 2 | -28/+29 |
| | * | ethlog: add Godoc documentation, remove README | Felix Lange | 2014-10-17 | 2 | -79/+70 |
| | * | ethlog: verify that Flush is blocking in TestLoggerFlush | Felix Lange | 2014-10-17 | 1 | -6/+24 |
| | * | ethlog: don't buffer output in TestConcurrentAddSystem | Felix Lange | 2014-10-17 | 1 | -1/+1 |
| | * | ethlog: improve TestLogSystem | Felix Lange | 2014-10-17 | 1 | -27/+38 |
| | * | ethlog: fix StdLogSystem data race on level | Felix Lange | 2014-10-17 | 1 | -4/+5 |
| | * | ethlog: add test that adds log systems concurrently | Felix Lange | 2014-10-17 | 1 | -0/+29 |
| | * | ethlog: Reset before each test | Felix Lange | 2014-10-17 | 1 | -4/+12 |
| | * | ethlog: fix test compilation error | Felix Lange | 2014-10-17 | 1 | -1/+0 |
| | * | ethlog: improve dispatch concurrency | Felix Lange | 2014-10-17 | 1 | -54/+57 |
| |/ | |||||
| * | arith test | obscuren | 2014-10-17 | 1 | -0/+3239 |
| * | Quick dirty peer update | obscuren | 2014-10-17 | 2 | -16/+24 |
| * | Merge pull request #58 from fjl/feature/event | Jeffrey Wilcke | 2014-10-17 | 18 | -633/+556 |
| |\ | |||||
| | * | event: panic for duplicate type | Felix Lange | 2014-10-17 | 2 | -1/+20 |
| | * | ethreact: remove package | Felix Lange | 2014-10-17 | 3 | -274/+0 |
| | * | eventer: remove package | Felix Lange | 2014-10-17 | 2 | -196/+0 |
| | * | ethchain: fix tests | Felix Lange | 2014-10-17 | 3 | -11/+14 |
| | * | all: use (blocking) event package instead of ethreact | Felix Lange | 2014-10-17 | 8 | -155/+144 |
| | * | event: make TypeMux zero value ready to use | Felix Lange | 2014-10-17 | 2 | -13/+12 |
| | * | event: make Unsubscribe idempotent | Felix Lange | 2014-10-17 | 1 | -7/+16 |
| | * | event: add some documentation | Felix Lange | 2014-10-17 | 2 | -0/+51 |
| | * | event: new package for event multiplexer | Felix Lange | 2014-10-17 | 2 | -0/+323 |
| * | | added eth tester | obscuren | 2014-10-17 | 2 | -0/+104 |
| * | | Fixed most of the tests | obscuren | 2014-10-17 | 9 | -67/+112 |
| |/ | |||||
| * | Corrected package .... | obscuren | 2014-10-16 | 1 | -1/+1 |
| * | Updated tests | obscuren | 2014-10-16 | 2 | -15/+34 |
| * | Moved state reset to defered function | obscuren | 2014-10-16 | 1 | -5/+6 |
| * | Switch EXT* codes | obscuren | 2014-10-16 | 2 | -4/+4 |
| * | Use the state instead of the state object directly. | obscuren | 2014-10-16 | 3 | -23/+58 |
| * | Fixed remote Arithmetic tests | obscuren | 2014-10-15 | 11 | -100/+187 |
| * | Working on test suite | obscuren | 2014-10-15 | 7 | -0/+228 |
| * | Couple of minor issues fixed | obscuren | 2014-10-15 | 6 | -5/+13 |
| * | Removed old installer script | obscuren | 2014-10-14 | 2 | -61/+3 |
| * | Tests for native function calling | obscuren | 2014-10-14 | 6 | -14/+80 |
| * | Changed VM Test code | obscuren | 2014-10-14 | 1 | -10/+16 |
| * | Refactored VM to two separate VMs; std & debug | obscuren | 2014-10-14 | 13 | -352/+1153 |
| * | Max callstack | obscuren | 2014-10-11 | 2 | -4/+11 |
| * | Implemented AR PoW | obscuren | 2014-10-11 | 5 | -0/+300 |
| * | Added some methods to comply to the PoW block interface | obscuren | 2014-10-11 | 1 | -0/+8 |
| * | Added generic big to 256 method. Implemented new iterator | obscuren | 2014-10-10 | 8 | -120/+151 |
| * | Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop | obscuren | 2014-10-10 | 3 | -19/+83 |
| |\ | |||||
| | * | Merge pull request #57 from fjl/feature/raceless-ethereum-filters | Jeffrey Wilcke | 2014-10-10 | 1 | -10/+23 |
| | |\ | |||||
| | | * | eth: fix filter map data race | Felix Lange | 2014-10-09 | 1 | -10/+23 |
| | * | | Merge pull request #56 from fjl/feature/raceless-eventer | Jeffrey Wilcke | 2014-10-10 | 2 | -9/+60 |
| | |\ \ | | | |/ | | |/| | |||||
| | | * | eventer: fix data race | Felix Lange | 2014-10-08 | 1 | -4/+8 |
| | | * | eventer: add test for concurrent Post/Register | Felix Lange | 2014-10-08 | 1 | -1/+48 |
| | | * | eventer: fix tests | Felix Lange | 2014-10-08 | 1 | -4/+4 |
| | |/ | |||||
| * / | Implemented new iterator | obscuren | 2014-10-10 | 1 | -0/+143 |
| |/ | |||||
| * | Moved the To256 | obscuren | 2014-10-08 | 2 | -29/+37 |
| * | Proper new block | obscuren | 2014-10-08 | 1 | -1/+9 |
| * | New block message | obscuren | 2014-10-08 | 5 | -10/+23 |
| * | Renamed Sha3Bin to Sha3 | obscuren | 2014-10-08 | 10 | -20/+22 |
| * | Precompiled crypto contracts | obscuren | 2014-10-08 | 2 | -60/+73 |
| * | Removed POST & moved CALLCODE | obscuren | 2014-10-08 | 1 | -185/+30 |
| * | ECRECOVER RIPEMD160 SHA256 | obscuren | 2014-10-08 | 1 | -0/+30 |
| * | Protocol bump | obscuren | 2014-10-08 | 1 | -19/+16 |
| * | Minor tweaks for poc7 | obscuren | 2014-10-08 | 7 | -40/+43 |
| * | kick of bad peers | obscuren | 2014-10-07 | 5 | -77/+54 |
| * | Kick off bad peers on bad chains and improved catch up on diverted chain | obscuren | 2014-10-02 | 2 | -10/+19 |
| * | Black listing of bad peers | obscuren | 2014-10-02 | 3 | -28/+121 |
| * | Proper delete | obscuren | 2014-10-02 | 1 | -1/+1 |
| * | Fixed inconsistencies | obscuren | 2014-10-02 | 7 | -25/+37 |
| * | improved blockchain downloading | obscuren | 2014-10-02 | 2 | -37/+42 |
| * | msg | obscuren | 2014-10-02 | 1 | -3/+3 |
| * | Implemented WebSocket package | obscuren | 2014-10-01 | 6 | -12/+272 |
| * | Working on new (blocking) event machine. | obscuren | 2014-09-29 | 9 | -180/+322 |
| * | Block pool is thread safe | obscuren | 2014-09-28 | 3 | -53/+69 |
| * | Have you seen my parents, sir? | obscuren | 2014-09-27 | 2 | -2/+2 |
| * | Logging messages | obscuren | 2014-09-27 | 2 | -2/+4 |
| * | skip messages properly | obscuren | 2014-09-27 | 1 | -3/+3 |
| * | Merge branch 'release/0.6.7' into develop | obscuren | 2014-09-26 | 3 | -1/+14 |
| |\ | |||||
| | * | Added protocol caps accessors | obscuren | 2014-09-26 | 3 | -1/+14 |
| |/ | |||||
| * | Fixed messages to use proper numbers | obscuren | 2014-09-26 | 3 | -55/+54 |
| * | Attempt to catch up from unknown block | obscuren | 2014-09-25 | 3 | -3/+15 |
| * | Merge branch 'master' into develop | obscuren | 2014-09-25 | 2 | -0/+3 |
| |\ | |||||
| | * | Merge pull request #52 from nicksavers/winfix | Jeffrey Wilcke | 2014-09-25 | 2 | -0/+3 |
| | |\ | |||||
| | | * | Add blank line after +build comment | nicksavers | 2014-09-24 | 2 | -0/+3 |
| * | | | Merge branch 'master' into develop | obscuren | 2014-09-25 | 1 | -2/+2 |
| |\| | | |||||
| | * | | queue get peers each 10 seconds | obscuren | 2014-09-25 | 1 | -2/+2 |
| * | | | Merge branch 'master' into develop | obscuren | 2014-09-25 | 2 | -5/+4 |
| |\| | | |||||
| | * | | merge error | obscuren | 2014-09-25 | 2 | -5/+4 |
| | * | | Merge branch 'release/0.6.6' | obscuren | 2014-09-25 | 9 | -89/+202 |
| | |\ \ | |||||
| * | \ \ | Merge branch 'release/0.6.6' into develop | obscuren | 2014-09-25 | 2 | -13/+13 |
| |\ \ \ \ | | | |/ / | | |/| | | |||||
| | * | | | Temp work around | obscuren | 2014-09-25 | 2 | -13/+13 |
| |/ / / | |||||
| * | | | Merge branch 'tmp' into develop | obscuren | 2014-09-25 | 7 | -66/+169 |
| |\ \ \ | |||||
| | * | | | Block pool stop / start | obscuren | 2014-09-25 | 1 | -0/+5 |
| | * | | | Peers no longer take care of block processing | obscuren | 2014-09-25 | 1 | -32/+2 |
| | * | | | Removed log | obscuren | 2014-09-25 | 1 | -1/+0 |
| | * | | | Mine without txs | obscuren | 2014-09-25 | 1 | -7/+0 |
| | * | | | Changed the block fetching code and hash distribution | obscuren | 2014-09-25 | 1 | -45/+85 |
| | * | | | Info => Debug | obscuren | 2014-09-25 | 1 | -3/+1 |
| | * | | | Fixed race condition | obscuren | 2014-09-24 | 1 | -2/+2 |
| | * | | | tmp | obscuren | 2014-09-24 | 3 | -45/+154 |
| | |/ / | |||||
| * / / | checkp | obscuren | 2014-09-24 | 2 | -22/+32 |
| |/ / | |||||
| * / | Added TD for each block | obscuren | 2014-09-24 | 4 | -2/+44 |
| |/ | |||||
| * | Merge branch 'develop' | obscuren | 2014-09-24 | 2 | -2/+2 |
| |\ | |||||
| | * | ugh | obscuren | 2014-09-24 | 2 | -2/+2 |
| | * | Merge branch 'hotfix/0.6.5-3' into develop | obscuren | 2014-09-23 | 3 | -12/+37 |
| | |\ | |||||
| | * \ | Merge branch 'hotfix/0.6.5-2' into develop | obscuren | 2014-09-23 | 2 | -0/+32 |
| | |\ \ | |||||
| | * \ \ | Merge branch 'hotfix/0.6.5-1' into develop | obscuren | 2014-09-23 | 1 | -0/+8 |
| | |\ \ \ | |||||
| | * \ \ \ | Merge branch 'release/0.6.5' into develop | obscuren | 2014-09-23 | 3 | -14/+16 |
| | |\ \ \ \ | |||||
| * | \ \ \ \ | Merge branch 'hotfix/0.6.5-3' | obscuren | 2014-09-23 | 3 | -12/+37 |
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | | | |||||
| | * | | | | | Re-added min gas price check on tx pool | obscuren | 2014-09-23 | 3 | -12/+37 |
| |/ / / / / | |||||
| * | | | | | Merge branch 'hotfix/0.6.5-2' | obscuren | 2014-09-23 | 2 | -0/+32 |
| |\ \ \ \ \ | | | |_|_|/ | | |/| | | | |||||
| | * | | | | Removed windows support for serpent :-( | obscuren | 2014-09-23 | 2 | -0/+32 |
| |/ / / / | |||||
| * | | | | Merge branch 'hotfix/0.6.5-1' | obscuren | 2014-09-23 | 1 | -0/+8 |
| |\ \ \ \ | | | |_|/ | | |/| | | |||||
| | * | | | don't mine without transactions | obscuren | 2014-09-23 | 1 | -0/+8 |
| |/ / / | |||||
| * | | | Merge branch 'release/0.6.5' | obscuren | 2014-09-23 | 44 | -1140/+1493 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Remove log | obscuren | 2014-09-23 | 1 | -1/+0 |
| | * | | Increased from 200 nano to milliseconds | obscuren | 2014-09-23 | 1 | -1/+2 |
| | * | | Remove log | obscuren | 2014-09-22 | 1 | -1/+0 |
| | * | | New Peer server | obscuren | 2014-09-22 | 1 | -1/+2 |
| | * | | Support C++ GetBlockHash by assuming empty = done | obscuren | 2014-09-22 | 1 | -12/+14 |
| | |/ | |||||
| | * | Added JavaScript JSON helper | obscuren | 2014-09-22 | 1 | -1/+16 |
| | * | Re-wrote Call and Execute to use the new vm messages | obscuren | 2014-09-22 | 2 | -21/+39 |
| | * | BigInt accept string | obscuren | 2014-09-22 | 1 | -0/+2 |
| | * | Fixed deref ptr | obscuren | 2014-09-19 | 3 | -3/+26 |
| | * | Updated opcodes | obscuren | 2014-09-18 | 1 | -138/+106 |
| | * | Upped protocol version for VM change | obscuren | 2014-09-18 | 5 | -81/+110 |
| | * | Removed extra slash so @nicksavers gets off my back ;-) | obscuren | 2014-09-17 | 1 | -9/+11 |
| | * | Added len | obscuren | 2014-09-17 | 2 | -9/+45 |
| | * | Added Past peers option | obscuren | 2014-09-17 | 1 | -5/+14 |
| | * | Rewrite | obscuren | 2014-09-17 | 1 | -1/+4 |
| | * | Truncate when writing | obscuren | 2014-09-17 | 1 | -1/+1 |
| | * | Connect to previous peer | obscuren | 2014-09-16 | 2 | -40/+63 |
| | * | Up deadline to reduce cpu load | obscuren | 2014-09-16 | 1 | -1/+1 |
| | * | Moved code | obscuren | 2014-09-16 | 2 | -12/+206 |
| | * | Rewrote reading strategy | obscuren | 2014-09-16 | 1 | -203/+38 |
| | * | require 5 for post | obscuren | 2014-09-16 | 2 | -6/+8 |
| | * | VM execution fixes | obscuren | 2014-09-16 | 7 | -51/+57 |
| | * | Improved catching up and refactored | obscuren | 2014-09-15 | 11 | -102/+125 |
| | * | Updated GHOST | obscuren | 2014-09-15 | 7 | -66/+101 |
| | * | Added unique set | obscuren | 2014-09-15 | 1 | -0/+32 |
| | * | add it to the list | obscuren | 2014-09-14 | 2 | -1/+1 |
| | * | fixed status message | obscuren | 2014-09-14 | 1 | -9/+19 |
| | * | tmp | obscuren | 2014-09-14 | 1 | -1/+1 |
| | * | log removed | obscuren | 2014-09-14 | 1 | -2/+0 |
| | * | tmp | obscuren | 2014-09-14 | 1 | -14/+15 |
| | * | Fixed contract validation address in tx pool | obscuren | 2014-09-14 | 1 | -2/+5 |
| | * | Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop | obscuren | 2014-09-14 | 3 | -0/+36 |
| | |\ | |||||
| | | * | Merge pull request #49 from WeMeetAgain/develop | Jeffrey Wilcke | 2014-09-11 | 3 | -0/+36 |
| | | |\ | |||||
| | | | * | Merge branch 'feature-pushtx' into develop | Cayman Nava | 2014-09-10 | 3 | -0/+36 |
| | | | |\ | |||||
| | | | | * | add pushtx to api | Cayman Nava | 2014-09-10 | 3 | -0/+36 |
| | * | | | | Reworked filters | obscuren | 2014-09-14 | 4 | -95/+68 |
| | * | | | | Merge branch 'master' into develop | obscuren | 2014-09-13 | 0 | -0/+0 |
| | |\ \ \ \ | | |/ / / / | |/| | | | | |||||
| * | | | | | fi crypto | obscuren | 2014-09-13 | 1 | -16/+2 |
| | * | | | | added string casting | obscuren | 2014-09-13 | 2 | -4/+12 |
| | * | | | | Removed some commented code | obscuren | 2014-09-10 | 3 | -92/+2 |
| | |/ / / | |||||
| | * / / | New p2p protocol. NOTE: Needs major refactoring. See #50 | obscuren | 2014-09-10 | 2 | -56/+103 |
| | |/ / | |||||
| | * | | Added CALLSTATELESS | obscuren | 2014-09-10 | 2 | -8/+22 |
| | * | | Added GetCode method | obscuren | 2014-09-08 | 2 | -1/+14 |
| | * | | Make use of new list type for transactions instead of json | obscuren | 2014-09-08 | 1 | -15/+19 |
| | * | | New OPCODES | obscuren | 2014-09-08 | 2 | -24/+59 |
| | * | | Contract creation address are empty again | obscuren | 2014-09-08 | 2 | -4/+3 |
| | * | | Reset the transient state when a new block's been found | obscuren | 2014-09-08 | 1 | -0/+2 |
| | * | | Changed back to FIPS 180 | obscuren | 2014-09-08 | 2 | -18/+4 |
| | * | | Added new list type which can embed any slice type | obscuren | 2014-09-07 | 1 | -0/+42 |
| | * | | Updated to latest sha3 implementation. Fixes #48 | obscuren | 2014-09-07 | 2 | -2/+19 |
| | |/ | |||||
| | * | Block size | obscuren | 2014-08-25 | 4 | -2/+35 |
| | * | Implemented POST | obscuren | 2014-08-25 | 6 | -71/+209 |
| | * | Serpent! :-) | obscuren | 2014-08-24 | 1 | -9/+9 |
| | * | Merge branch 'master' into develop | obscuren | 2014-08-24 | 1 | -1/+3 |
| | |\ | | |/ | |/| | |||||
| * | | changed to new nat-pmp repo | obscuren | 2014-08-24 | 1 | -1/+3 |
| * | | Merge branch 'release/0.6.4' | obscuren | 2014-08-22 | 2 | -10/+6 |
| |\ \ | |||||
| * \ \ | Merge branch 'release/0.6.4' | obscuren | 2014-08-22 | 8 | -29/+207 |
| |\ \ \ | |||||
| * \ \ \ | Merge branch 'release/0.6.3' | obscuren | 2014-08-21 | 64 | -3113/+4463 |
| |\ \ \ \ | |||||
| * \ \ \ \ | Merge branch 'release/0.6.0' | obscuren | 2014-07-25 | 29 | -590/+1019 |
| |\ \ \ \ \ | |||||
| | | | | | * | Changed level | obscuren | 2014-08-24 | 1 | -2/+3 |
| | | | | | * | Removed old code | obscuren | 2014-08-23 | 2 | -11/+4 |
| | | | | | * | Don't add ... | obscuren | 2014-08-22 | 1 | -2/+2 |
| | | | | | * | Log | obscuren | 2014-08-22 | 1 | -2/+0 |
| | | | | | * | Minor improvement catching up | obscuren | 2014-08-22 | 1 | -4/+12 |
| | | | | | * | Write Protocol version to the db so we can perform sanity checks | obscuren | 2014-08-22 | 2 | -1/+13 |
| | | | | | * | Extra checks | obscuren | 2014-08-22 | 1 | -5/+9 |
| | | | | | * | Changed log statements | obscuren | 2014-08-22 | 1 | -1/+1 |
| | | | | | * | Removed old chain code | obscuren | 2014-08-22 | 3 | -209/+5 |
| | | | | | * | Storage at changed to return bytes | obscuren | 2014-08-22 | 2 | -2/+3 |
| | | | | | * | Merge branch 'release/0.6.4' into develop | obscuren | 2014-08-22 | 3 | -11/+7 |
| | | | | | |\ | | | | | | |/ | | | | | |/| | |||||
| | | | | * | | invalidated SWAP/DUP | obscuren | 2014-08-22 | 2 | -10/+6 |
| | | | |/ / | |||||
| | | | * / | bump | obscuren | 2014-08-22 | 1 | -1/+1 |
| | | | |/ | |||||
| | | | * | Turbo mining | obscuren | 2014-08-22 | 3 | -3/+15 |
| | | | * | DUP/SWAP n & ADD/MULMOD | obscuren | 2014-08-22 | 2 | -12/+116 |
| | | | * | DUP n SWAP n | obscuren | 2014-08-22 | 4 | -9/+59 |
| | | | * | Turbo mode | obscuren | 2014-08-22 | 1 | -1/+2 |
| | | | * | Turbo mode | obscuren | 2014-08-22 | 1 | -4/+15 |
| | | | * | Merge branch 'release/0.6.3' into develop | obscuren | 2014-08-21 | 2 | -20/+20 |
| | | | |\ | | | | |/ | | | |/| | |||||
| | | * | | MIT -> LGPL | obscuren | 2014-08-21 | 1 | -18/+13 |
| | | * | | Doc | obscuren | 2014-08-21 | 1 | -1/+6 |
| | | * | | Prot 0.6.3 | obscuren | 2014-08-21 | 1 | -1/+1 |
| | | |/ | |||||
| | | * | Always return something valid | obscuren | 2014-08-21 | 1 | -0/+5 |
| | | * | Re-enabled catching up flag | obscuren | 2014-08-21 | 1 | -0/+10 |
| | | * | PoC 6 networking code. | obscuren | 2014-08-21 | 7 | -196/+295 |
| | | * | Added block by hash or number | obscuren | 2014-08-20 | 1 | -1/+13 |
| | | * | Added block by number | obscuren | 2014-08-20 | 1 | -0/+8 |
| | | * | JS Filter | obscuren | 2014-08-20 | 3 | -8/+53 |
| | | * | Added JSFilter type | obscuren | 2014-08-20 | 1 | -3/+83 |
| | | * | Removed the "Get" part | obscuren | 2014-08-18 | 6 | -21/+83 |
| | | * | Dump bytes instead of strings | obscuren | 2014-08-17 | 2 | -11/+28 |
| | | * | Mutan compile | obscuren | 2014-08-17 | 1 | -0/+9 |
| | | * | Mutan compile | obscuren | 2014-08-17 | 1 | -0/+9 |
| | | * | removed pub completely in favour of pipe | obscuren | 2014-08-16 | 4 | -592/+26 |
| | | * | Added message to closure && added change addresses | obscuren | 2014-08-15 | 8 | -50/+125 |
| | | * | Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop | obscuren | 2014-08-15 | 3 | -1660/+1636 |
| | | |\ |