Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | blockpool stability fixes: | zelig | 2015-04-13 | 1 | -0/+1 |
| | | | | | | | | | | | | - follow up locks and fix them - chainManager: call SetQueued for parentErr future blocks, uncomment TD checks, unskip test - make ErrIncorrectTD non-fatal to be forgiving to genuine mistaken nodes (temp) but demote them to guard against stuck best peers. - add purging to bounded nodeCache (config nodeCacheSize) - use nodeCache when creating blockpool entries and let non-best peers add blocks (performance boost) - minor error in addError - reduce idleBestPeerTimeout to 1 minute - correct status counts and unskip status passing status test - glogified logging | ||||
* | Set input to nil for create | obscuren | 2015-04-11 | 1 | -1/+4 |
| | |||||
* | Merge branch 'frontier/blockpool' of ↵ | obscuren | 2015-04-09 | 2 | -0/+5 |
|\ | | | | | | | https://github.com/ethersphere/go-ethereum into ethersphere-frontier/blockpool | ||||
| * | future queued block support | zelig | 2015-04-09 | 2 | -0/+5 |
| | | | | | | | | | | | | | | - queued bool // flag for blockpool to skip TD check - set to true when future block queued - in checkTD: skip check if queued - TODO: add test (insertchain sets future block) | ||||
* | | Added default registrar | obscuren | 2015-04-09 | 1 | -9/+1 |
|/ | |||||
* | Moved handling of nonces to the managed state | obscuren | 2015-04-09 | 2 | -5/+8 |
| | |||||
* | Default log to stderr | obscuren | 2015-04-09 | 1 | -1/+0 |
| | |||||
* | Improved transaction pool | obscuren | 2015-04-09 | 6 | -141/+103 |
| | | | | | | | | | | The transaction pool will now some easily be able to pre determine the validity of a transaction by checking the following: * Account existst * gas limit higher than the instrinsic gas * enough funds to pay upfront costs * nonce check | ||||
* | ignore invalid txs right after being added if they prove incorrect | obscuren | 2015-04-09 | 1 | -0/+1 |
| | |||||
* | Changed how logs are being recorded | obscuren | 2015-04-08 | 9 | -113/+68 |
| | | | | | | | Logs are now recorded per transactions instead of tossing them out after each transaction. This should also fix an issue with `eth_getFilterLogs` (#629) Also now implemented are the `transactionHash, blockHash, transactionIndex, logIndex` on logs. Closes #654. | ||||
* | Sync managed accounts to the network | obscuren | 2015-04-08 | 1 | -3/+2 |
| | |||||
* | Added additional methods to the managed state | obscuren | 2015-04-08 | 2 | -2/+44 |
| | | | | | * GetNonce Returns the canonical nonce * SetNonce Set the managed account's nonce | ||||
* | Improved tx pool to ignore invalid transactions | obscuren | 2015-04-08 | 1 | -8/+29 |
| | | | | | Transaction pool will attempt to ignore invalid transactions it had previously encountered. | ||||
* | Merge pull request #648 from ↵ | Jeffrey Wilcke | 2015-04-08 | 2 | -3/+13 |
|\ | | | | | | | | | Gustav-Simonsson/forward_ecrecover_err_and_remove_dup_checks Forward and log EC recover err and remove dup pubkey len check | ||||
| * | Use logger.Error instead of 0 with glog | Gustav Simonsson | 2015-04-07 | 2 | -2/+4 |
| | | |||||
| * | Forward and log EC recover err and remove dup pubkey len check | Gustav Simonsson | 2015-04-07 | 2 | -3/+11 |
| | | |||||
* | | Updated logging | obscuren | 2015-04-07 | 1 | -5/+5 |
| | | |||||
* | | Fixed tests | obscuren | 2015-04-07 | 1 | -1/+1 |
|/ | |||||
* | Block header changed & console miner control | obscuren | 2015-04-06 | 4 | -6/+6 |
| | | | | | | * miner control moved to `admin.miner` * miner option to set extra data * block extra now bytes | ||||
* | time lapse | obscuren | 2015-04-05 | 1 | -1/+3 |
| | |||||
* | Updated logging | obscuren | 2015-04-05 | 1 | -8/+18 |
| | |||||
* | Changed R S to big int and fixed tests | obscuren | 2015-04-05 | 4 | -8/+28 |
| | |||||
* | Changed R & S to *big.Int | obscuren | 2015-04-05 | 1 | -6/+6 |
| | |||||
* | Added thread safe each | obscuren | 2015-04-05 | 2 | -4/+15 |
| | |||||
* | Removed debugging | obscuren | 2015-04-05 | 1 | -7/+0 |
| | |||||
* | prevent deadlock | obscuren | 2015-04-05 | 2 | -17/+10 |
| | |||||
* | Improved chain manager, improved block processor, fixed tests | obscuren | 2015-04-04 | 4 | -7/+44 |
| | | | | | | * ChainManager allows cached future blocks for later processing * BlockProcessor allows a 4 second window on future blocks * Fixed tests | ||||
* | Added block cache delete method | obscuren | 2015-04-04 | 2 | -0/+29 |
| | |||||
* | Changed log to new logging | obscuren | 2015-04-04 | 2 | -9/+15 |
| | |||||
* | Moved logging to logger.Core | obscuren | 2015-04-04 | 4 | -11/+10 |
| | |||||
* | check for nil block (tmp). | obscuren | 2015-04-04 | 1 | -0/+3 |
| | | | | @zelig this needs to be addressed in the block pool. | ||||
* | basic glog | obscuren | 2015-04-04 | 6 | -37/+37 |
| | |||||
* | Merge branch 'develop' into glog | obscuren | 2015-04-03 | 2 | -2/+3 |
|\ | |||||
| * | do not include BlockEqualTS as valid uncles | obscuren | 2015-04-03 | 2 | -2/+3 |
| | | |||||
* | | glog wip | obscuren | 2015-04-03 | 1 | -1/+4 |
|/ | |||||
* | bool => int | obscuren | 2015-04-03 | 1 | -63/+63 |
| | |||||
* | fixed stack level | obscuren | 2015-04-03 | 1 | -3/+4 |
| | |||||
* | Removed old (unused) argument | obscuren | 2015-04-02 | 4 | -6/+6 |
| | |||||
* | Merge pull request #623 from ↵ | Jeffrey Wilcke | 2015-04-02 | 12 | -105/+67 |
|\ | | | | | | | | | Gustav-Simonsson/read_protocol_values_from_common_params Read most protocol params from common/params.json | ||||
| * | Read most protocol params from common/params.json | Gustav Simonsson | 2015-04-02 | 12 | -105/+67 |
| | | | | | | | | | | | | | | | | | | * Add params package with exported variables generated from github.com/ethereum/common/blob/master/params.json * Use params package variables in applicable places * Add check for minimum gas limit in validation of block's gas limit * Remove common/params.json from go-ethereum to avoid outdated version of it | ||||
* | | Fixed uncle rewards in miner | obscuren | 2015-04-02 | 1 | -17/+23 |
|/ | | | | | The uncle rewards were changed in the block processor. This change will reflect those changes in the miner as well. | ||||
* | sha3 stack check | obscuren | 2015-04-01 | 1 | -1/+1 |
| | |||||
* | Check stack for BALANCE. Closes #622 | obscuren | 2015-04-01 | 1 | -1/+1 |
| | |||||
* | check TxMsg | zelig | 2015-04-01 | 1 | -3/+3 |
| | | | | | | - add validation on TxMsg checking for nil - add test for nil transaction - add test for zero value transaction (no extra validation needed) | ||||
* | test for invalid rlp encoding of block in BlocksMsg | zelig | 2015-04-01 | 1 | -15/+12 |
| | | | | | | | - rename Validate -> ValidateFields not to confure consensus block validation - add nil transaction and nil uncle header validation - remove bigint field checks: rlp already decodes *big.Int to big.NewInt(0) - add test for nil header, nil transaction | ||||
* | eth: SEC-29 eth wire protocol decoding invalid message data crashes client | zelig | 2015-04-01 | 1 | -0/+20 |
| | | | | | | - add validate method to types.Block - validate after Decode -> error - add tests for NewBlockMsg | ||||
* | Merge branch 'hexify' of https://github.com/tgerring/go-ethereum into ↵ | obscuren | 2015-04-01 | 1 | -3/+19 |
|\ | | | | | | | tgerring-hexify | ||||
| * | txMeta storage as struct | Taylor Gerring | 2015-04-01 | 1 | -17/+11 |
| | | |||||
| * | Store and retrieve tx context metadata #608 | Taylor Gerring | 2015-04-01 | 1 | -3/+25 |
| | | | | | | | | | | Improving this in the future will allow for cleaning up a bit of legacy code. | ||||
* | | fixed tests | obscuren | 2015-04-01 | 1 | -1/+1 |
| | | |||||
* | | Blocktest fixed, Execution fixed | obscuren | 2015-04-01 | 6 | -35/+70 |
|/ | | | | | | * Added new CreateAccount method which properly overwrites previous accounts (excluding balance) * Fixed block tests (100% success) | ||||
* | Added Code field | obscuren | 2015-03-31 | 1 | -2/+6 |
| | |||||
* | Correct gas limit validation according to new algorithm | Gustav Simonsson | 2015-03-30 | 1 | -1/+4 |
| | | | | | | * Use absolute value of (block's gas limit) - (parent's gas limit) in comparison with diff limit. * Ensure the diff is strictly smaller than the allowed size. | ||||
* | Cleanup. | obscuren | 2015-03-29 | 1 | -10/+13 |
| | |||||
* | Merge branch 'fix_ecrecover' of https://github.com/ebuchman/go-ethereum into ↵ | obscuren | 2015-03-29 | 1 | -7/+21 |
|\ | | | | | | | ebuchman-fix_ecrecover | ||||
* \ | Merge pull request #579 from tgerring/rpcargs | Jeffrey Wilcke | 2015-03-29 | 1 | -23/+0 |
|\ \ | | | | | | | RPC Args | ||||
| * | | Decouple core from rpc | Taylor Gerring | 2015-03-27 | 1 | -23/+0 |
| | | | |||||
* | | | Cleanup VM. | obscuren | 2015-03-29 | 4 | -56/+45 |
| | | | | | | | | | | | | | | | | | | | | | * CALLDATA use getData * removed old context get range value * removed casting big => int for some cases * pc now big int #457 | ||||
* | | | Cleanup VM | obscuren | 2015-03-29 | 5 | -29/+40 |
| | | | |||||
* | | | PUSH gas fix | obscuren | 2015-03-27 | 2 | -21/+5 |
| | | | |||||
* | | | Removed comments | obscuren | 2015-03-27 | 1 | -15/+0 |
| | | | |||||
* | | | Removed defer/panic. #503 | obscuren | 2015-03-27 | 4 | -120/+180 |
| | | | |||||
* | | | Explicitly check memory's data store. #515 | obscuren | 2015-03-27 | 1 | -1/+8 |
|/ / | |||||
* | | Stack limit | obscuren | 2015-03-27 | 1 | -0/+6 |
| | | |||||
* | | Fixed filter and refactored code | obscuren | 2015-03-26 | 1 | -1/+1 |
| | | |||||
* | | added tx tests and fixed block tests | obscuren | 2015-03-26 | 4 | -4/+59 |
| | | |||||
* | | fixed tests | obscuren | 2015-03-24 | 1 | -1/+1 |
| | | |||||
* | | Cleaned up changes | obscuren | 2015-03-24 | 4 | -11/+7 |
| | | |||||
* | | Modified according to poc 9 changes | obscuren | 2015-03-24 | 3 | -6/+8 |
| | | | | | | | | * Refund of value | ||||
* | | Secure trie shakey / key matching | obscuren | 2015-03-24 | 1 | -4/+4 |
| | | |||||
* | | Copy fix | obscuren | 2015-03-24 | 2 | -3/+10 |
| | | |||||
* | | Updated for PV59 | obscuren | 2015-03-24 | 2 | -18/+15 |
| | | | | | | | | * Value XFER are refunded back to the sender if the execution fails | ||||
* | | Added copy function | obscuren | 2015-03-24 | 1 | -0/+17 |
| | | |||||
* | | better block propagation | obscuren | 2015-03-24 | 1 | -2/+2 |
| | | |||||
* | | removed legacy code | obscuren | 2015-03-24 | 2 | -3/+1 |
| | | |||||
* | | Gas validation and clean up of legacy code | obscuren | 2015-03-24 | 1 | -12/+11 |
| | | |||||
* | | Decrement depth | obscuren | 2015-03-24 | 1 | -1/+3 |
| | | |||||
* | | fixed bad uncles | obscuren | 2015-03-24 | 1 | -2/+2 |
| | | |||||
* | | moved state and vm to core | obscuren | 2015-03-23 | 41 | -18/+3561 |
| | | |||||
* | | moved to error | obscuren | 2015-03-23 | 1 | -9/+2 |
| | | |||||
* | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-03-23 | 1 | -2/+4 |
|\ \ | |||||
| * | | Correct difficulty calculation to use new difficulty minimum | Gustav Simonsson | 2015-03-23 | 1 | -2/+4 |
| |/ | |||||
* | | logging for possible uncles | obscuren | 2015-03-23 | 3 | -15/+31 |
| | | |||||
* | | added some nil checks for cache (testing specific) | obscuren | 2015-03-23 | 1 | -6/+19 |
| | | |||||
* | | finally merged *the missing* | obscuren | 2015-03-23 | 2 | -0/+9 |
|/ | |||||
* | Fixed incorrect recipient derived | obscuren | 2015-03-21 | 1 | -1/+1 |
| | |||||
* | merge | obscuren | 2015-03-20 | 1 | -2/+2 |
|\ | |||||
| * | Merge branch 'rpcxeth' into rpcfrontier | Taylor Gerring | 2015-03-20 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | Conflicts: rpc/api.go | ||||
| | * | Reorg filter logic to XEth | Taylor Gerring | 2015-03-20 | 1 | -1/+1 |
| | | | |||||
| * | | Listen to tx pre event and trigger 'pending' | obscuren | 2015-03-20 | 1 | -1/+1 |
| | | | |||||
* | | | Added caching for block chain. Currently set to 10k | obscuren | 2015-03-20 | 4 | -2/+136 |
| | | | |||||
* | | | copy over loop | obscuren | 2015-03-20 | 1 | -5/+2 |
| | | | |||||
* | | | :-) | obscuren | 2015-03-20 | 1 | -1/+0 |
| | | | |||||
* | | | merge | obscuren | 2015-03-19 | 6 | -31/+44 |
|\| | | |||||
| * | | re-enabled json logging | obscuren | 2015-03-19 | 1 | -2/+0 |
| |/ | |||||
| * | fixed chain event. Closes #529 | obscuren | 2015-03-19 | 6 | -29/+46 |
| | | |||||
* | | Merge branch 'conversion' of github.com-obscure:ethereum/go-ethereum into ↵ | obscuren | 2015-03-18 | 10 | -94/+180 |
|\ \ | | | | | | | | | | conversion | ||||
| * \ | Merge remote-tracking branch 'ethereum/conversion' into conversion | Felix Lange | 2015-03-18 | 2 | -0/+10 |
| |\ \ | |||||
| * | | | core: fix tests | Felix Lange | 2015-03-18 | 5 | -19/+13 |
| | | | | |||||
| * | | | core: use package rlp to encode blocks | Felix Lange | 2015-03-18 | 1 | -15/+12 |
| | | | | | | | | | | | | | | | | | | | | This also changes the chain export format so there is no enclosing list around the blocks, which enables streaming export. | ||||
| * | | | core/types: use package rlp instead of common.Decode | Felix Lange | 2015-03-18 | 4 | -60/+155 |
| | | | | |||||
* | | | | prep template for fixed size hashes | obscuren | 2015-03-18 | 1 | -2/+2 |
| |/ / |/| | | |||||
* | | | conversions. -compilable- | obscuren | 2015-03-18 | 1 | -0/+6 |
| | | | |||||
* | | | conversions | obscuren | 2015-03-18 | 1 | -0/+4 |
|/ / | |||||
* | | Fixed tests and bloom | obscuren | 2015-03-18 | 2 | -11/+17 |
| | | |||||
* | | bloom | obscuren | 2015-03-17 | 1 | -3/+4 |
| | | |||||
* | | Fixed VM & Tests w/ conversion | obscuren | 2015-03-17 | 2 | -12/+11 |
| | | |||||
* | | core: actually convert transaction pool | Felix Lange | 2015-03-17 | 3 | -17/+19 |
| | | |||||
* | | Merge remote-tracking branch 'ethereum/conversion' into conversion | Felix Lange | 2015-03-17 | 7 | -61/+72 |
|\ \ | |||||
| * | | converted vm | obscuren | 2015-03-17 | 7 | -61/+72 |
| | | | |||||
* | | | core: adapt Message for new Transaction.From signature | Felix Lange | 2015-03-17 | 2 | -3/+5 |
| | | | |||||
* | | | core: convert transaction pool to common.{Address,Hash} | Felix Lange | 2015-03-17 | 1 | -33/+21 |
| | | | |||||
* | | | core/types: don't use Address zero value for invalid addresses | Felix Lange | 2015-03-17 | 2 | -27/+37 |
| | | | |||||
* | | | core/types: fix Transaction.Hash and add support for encoding with package rlp | Felix Lange | 2015-03-17 | 2 | -6/+75 |
|/ / | |||||
* | | converted chain manager | obscuren | 2015-03-17 | 5 | -49/+55 |
| | | |||||
* | | updated vm env | obscuren | 2015-03-17 | 2 | -19/+20 |
| | | |||||
* | | updated blockpool | obscuren | 2015-03-17 | 3 | -24/+24 |
| | | |||||
* | | Merge branch 'conversion' of github.com-obscure:ethereum/go-ethereum into ↵ | obscuren | 2015-03-17 | 2 | -68/+26 |
|\ \ | | | | | | | | | | conversion | ||||
| * | | core/types: use common.{Hash,Address} in for transactions | Felix Lange | 2015-03-17 | 2 | -68/+26 |
| | | | |||||
* | | | converted vm | obscuren | 2015-03-17 | 1 | -3/+2 |
|/ / | |||||
* | | block conversion | obscuren | 2015-03-17 | 5 | -36/+75 |
| | | |||||
* | | new type + additional methods | obscuren | 2015-03-16 | 1 | -17/+17 |
|/ | |||||
* | Moved ethutil => common | obscuren | 2015-03-16 | 16 | -96/+96 |
| | |||||
* | merge | obscuren | 2015-03-15 | 1 | -2/+2 |
|\ | |||||
| * | core/types: make Block.{ParentHash,SeedHash,MixDigest} []byte | Felix Lange | 2015-03-14 | 1 | -3/+3 |
| | | | | | | | | There is no reason to keep them as ethutil.Bytes. | ||||
* | | POW fixes | obscuren | 2015-03-14 | 2 | -7/+1 |
| | | |||||
* | | typo | obscuren | 2015-03-14 | 1 | -1/+1 |
| | | |||||
* | | Improved errors. Closes #475 | obscuren | 2015-03-14 | 1 | -2/+2 |
| | | |||||
* | | GetBlockByNumber now properly looks for a number in the database | obscuren | 2015-03-14 | 1 | -28/+33 |
| | | |||||
* | | Return proper error | obscuren | 2015-03-14 | 3 | -1/+6 |
| | | |||||
* | | Implemented managed state | obscuren | 2015-03-13 | 1 | -4/+2 |
| | | | | | | | | * Reimplemented nonce management for known accounts. | ||||
* | | Implemented a manage state for keeping track of nonces | obscuren | 2015-03-13 | 1 | -5/+6 |
| | | |||||
* | | Increased genesis gas & gas floor limit to 3141592 | obscuren | 2015-03-13 | 2 | -4/+3 |
| | | |||||
* | | Changed context and ADDMOD, MULMOD | obscuren | 2015-03-13 | 1 | -1/+5 |
| | | | | | | | | | | * Cleaned up VM execution. VM run now takes a context * ADDMOD/MULMOD - removed incorrect cast | ||||
* | | more obvious failure for ethtest | obscuren | 2015-03-13 | 1 | -4/+1 |
| | | |||||
* | | Removed some of that gas pre pay magic | obscuren | 2015-03-13 | 2 | -31/+33 |
| | | |||||
* | | Add additional extra database for non-protocol related data | obscuren | 2015-03-12 | 4 | -6/+22 |
|/ | | | | * Add transaction to extra database after a successful block process | ||||
* | Changed V to byte. Closes #456 | obscuren | 2015-03-12 | 1 | -4/+4 |
| | |||||
* | Comment out broken test (return type does not exist) | Taylor Gerring | 2015-03-12 | 1 | -4/+5 |
| | |||||
* | Lowered default gas price and increased default gas limit | obscuren | 2015-03-12 | 1 | -0/+2 |
| | |||||
* | Improved error reporting and removed commented code | obscuren | 2015-03-11 | 2 | -43/+7 |
| | |||||
* | Merge branch 'develop' into rpcfrontier | obscuren | 2015-03-11 | 5 | -9/+9 |
|\ | | | | | | | | | | | Conflicts: rpc/api.go rpc/args.go | ||||
| * | Merge branch origin/develop into accounts-integration | Felix Lange | 2015-03-11 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | | | | | | | Conflicts: cmd/blocktest/main.go cmd/mist/debugger.go cmd/utils/cmd.go | ||||
| * | | cmd/evm, core, ethdb, state, tests/helper: remove ReadConfig calls | Felix Lange | 2015-03-10 | 2 | -4/+0 |
| | | | |||||
| * | | Merge ethereum/poc-9 into accounts-integration | Felix Lange | 2015-03-10 | 9 | -64/+133 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go | ||||
| * | | | core: remove Hash method from Message interface | Felix Lange | 2015-03-10 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | This will simplify the next commmit. Hash was only used for logging. | ||||
| * | | | accounts, core, eth, xeth: use account manager for everything | Felix Lange | 2015-03-07 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | | The account manager is now responsible for picking the default account and the coinbase. | ||||
| * | | | Integrate eth_accounts and eth_transact to use new account manager | Gustav Simonsson | 2015-03-06 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add from to eth_transact / xeth.Transact and add static pass in lieu of integrating with native Mist window for user passphrase entry * Make eth_accounts return AccountManager.Accounts() * Add a Generate Key menu item in Mist | ||||
* | | | | fallback | obscuren | 2015-03-11 | 1 | -0/+2 |
| |_|/ |/| | | |||||
* | | | Fixed error message. Closes #448 | obscuren | 2015-03-10 | 1 | -1/+1 |
| |/ |/| | |||||
* | | merge | obscuren | 2015-03-08 | 1 | -8/+6 |
|\ \ | |||||
| * \ | Merge pull request #431 from tgerring/jsonlogs | Taylor Gerring | 2015-03-06 | 1 | -2/+9 |
| |\ \ | | | | | | | | | Structured logging updates | ||||
| | * | | Added eth.chain.new_head | Taylor Gerring | 2015-03-06 | 1 | -2/+9 |
| | | | | |||||
* | | | | Fixed tests | obscuren | 2015-03-07 | 2 | -9/+10 |
| | | | | |||||
* | | | | Separated block db from state db. Partial fix for #416 | obscuren | 2015-03-07 | 3 | -17/+19 |
| | | | | |||||
* | | | | Queued approach to delivering chain events | obscuren | 2015-03-06 | 2 | -34/+83 |
| | | | | |||||
* | | | | debug comments & pow handling | obscuren | 2015-03-06 | 1 | -5/+0 |
| | | | | |||||
* | | | | Spec changes. | obscuren | 2015-03-06 | 3 | -6/+31 |
| |_|/ |/| | | | | | | | | * All errors during state transition result in an invalid tx | ||||
* | | | Merge pull request #426 from Gustav-Simonsson/add_blockchain_tests | Jeffrey Wilcke | 2015-03-06 | 2 | -1/+16 |
|\ \ \ | | | | | | | | | Add initial implementation of block tests | ||||
| * | | | Add initial implementation of block tests | Gustav Simonsson | 2015-03-05 | 2 | -1/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add blocktest cmd and support for block tests files in tests/BlockTests , the launched node does not connect to network, resets state with a genesis block from the test file and starts the RPC API | ||||
* | | | | Miner fixes and updates (including miner) | obscuren | 2015-03-05 | 4 | -22/+32 |
|/ / / | |||||
* | | | uncle validation | obscuren | 2015-03-04 | 4 | -30/+46 |
| | | | |||||
* | | | Fixed genesis | obscuren | 2015-03-04 | 2 | -19/+30 |
| | | | |||||
* | | | updated genesis | obscuren | 2015-03-04 | 1 | -0/+4 |
| | | | |||||
* | | | Changed nonce to a uint64 | obscuren | 2015-03-04 | 5 | -12/+12 |
| | | | |||||
* | | | Merge branch 'jsonlogs' of https://github.com/ethersphere/go-ethereum into ↵ | obscuren | 2015-03-04 | 1 | -3/+12 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ethersphere-jsonlogs Conflicts: eth/block_pool.go eth/block_pool_test.go eth/protocol_test.go miner/worker.go | ||||
| * | | | add eth.chain.new_head log to core/chain_manager | zelig | 2015-03-03 | 1 | -3/+12 |
| | | | | |||||
* | | | | merge | obscuren | 2015-03-04 | 1 | -9/+26 |
|\ \ \ \ | | |/ / | |/| | | |||||
| * | | | Filter accepts multiple topics per entry. Fixes #403 | obscuren | 2015-03-02 | 1 | -9/+26 |
| |/ / | |||||
* | | | Merge branch 'xcthulhu-publictests' into poc-9 | obscuren | 2015-03-04 | 5 | -9/+378 |
|\ \ \ | |||||
| * | | | fixed pow stuff | obscuren | 2015-03-04 | 3 | -7/+9 |
| | | | | |||||
| * | | | Merge branch 'publictests' of https://github.com/xcthulhu/go-ethereum into ↵ | obscuren | 2015-03-04 | 5 | -7/+374 |
| |\ \ \ | | | | | | | | | | | | | | | | xcthulhu-publictests | ||||
| | * | | | Introducing ethash | Matthew Wampler-Doty | 2015-03-03 | 5 | -37/+78 |
| | | | | | |||||
| | * | | | Only one uncle | Matthew Wampler-Doty | 2015-03-03 | 1 | -0/+4 |
| | | | | | |||||
| | * | | | Exposing stuff for ethash | Matthew Wampler-Doty | 2015-02-28 | 2 | -2/+3 |
| | | | | | |||||
| | * | | | Merge branch 'publictests' of github.com:ebuchman/go-ethereum into ethash_pow | Matthew Wampler-Doty | 2015-02-28 | 7 | -26/+363 |
| | |\ \ \ | |||||
| | | * | | | public functions for making chains on the fly | Ethan Buchman | 2015-02-28 | 2 | -96/+131 |
| | | | | | | |||||
| | | * | | | Merge branch 'develop' of https://github.com/ethereum/go-ethereum into develop | Ethan Buchman | 2015-02-27 | 10 | -91/+199 |
| | | |\ \ \ | | | | | |/ | | | | |/| | |||||
| | | * | | | core: chain manager forking tests | Ethan Buchman | 2015-02-18 | 1 | -0/+276 |
| | | | | | | |||||
| | | * | | | Merge branch 'develop' of https://github.com/ethereum/go-ethereum into develop | Ethan Buchman | 2015-02-18 | 14 | -234/+283 |
| | | |\ \ \ | |||||
| | | * | | | | fix unchecked slice index on tx.From() | Ethan Buchman | 2015-01-27 | 1 | -2/+7 |
| | | | | | | | |||||
| | * | | | | | Introducign MixDigest and SeedHash | Matthew Wampler-Doty | 2015-02-28 | 1 | -2/+7 |
| | | | | | | | |||||
* | | | | | | | changed message | obscuren | 2015-03-04 | 1 | -1/+1 |
|/ / / / / / | |||||
* | | | | | | GasLimit check updated | obscuren | 2015-03-04 | 1 | -6/+8 |
| | | | | | | |||||
* | | | | | | Fixed error for invalid transaction | obscuren | 2015-03-03 | 2 | -7/+24 |
| | | | | | | |||||
* | | | | | | Updated gast costs | obscuren | 2015-03-03 | 1 | -8/+4 |
| | | | | | | |||||
* | | | | | | Bloom expanded by 4 | obscuren | 2015-03-03 | 1 | -3/+4 |
| | | | | | | |||||
* | | | | | | New gas prices model | obscuren | 2015-03-02 | 2 | -7/+15 |
| | | | | | | |||||
* | | | | | | Merge branch 'ethersphere-blockpool2' into poc-9 | obscuren | 2015-03-01 | 1 | -0/+2 |
|\ \ \ \ \ \ | |||||
| * | | | | | | wip | obscuren | 2015-02-27 | 2 | -6/+8 |
| | | | | | | | |||||
* | | | | | | | Secure trie | obscuren | 2015-03-01 | 1 | -1/+1 |
| |_|_|_|_|/ |/| | | | | | |||||
* | | | | | | Removed some methods from the JS REPL | obscuren | 2015-03-01 | 1 | -2/+0 |
| |_|_|_|/ |/| | | | | |||||
* | | | | | Bump | obscuren | 2015-02-27 | 1 | -4/+1 |
| | | | | | |||||
* | | | | | Fixed consensus issue for refunding | obscuren | 2015-02-27 | 2 | -7/+10 |
|/ / / / | | | | | | | | | | | | | * Refund should _always_ go to the origin | ||||
* | | | | Validate block header gas limit | Gustav Simonsson | 2015-02-26 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add block header gas limit validation in ValidateBlock function, see eq 39 and 45 in yellow paper. Before it was calculated _for_ the block instead of validated. * Use the block header gas limit when setting the gas pool instead of calculating the value for the block. | ||||
* | | | | Merge branch 'master' into develop | obscuren | 2015-02-24 | 1 | -4/+26 |
|\ \ \ \ | |||||
| * | | | | Properly uninstall filters. Mining issue fixed #closes #365 | obscuren | 2015-02-23 | 1 | -4/+26 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added an additional tx state which is used to get the current nonce * Refresh transient state each time a new canonical block is found * Properly uninstall filters. Fixes a possible crash in RPC | ||||
* | | | | | removed log | obscuren | 2015-02-24 | 1 | -1/+0 |
|/ / / / | |||||
* / / / | Added eth_logs & fixed issue with manual log filtering | obscuren | 2015-02-22 | 2 | -13/+8 |
|/ / / | | | | | | | | | | | | | | | | * Implemented `eth_logs` * Fixed issue with `filter.Find()` where logs were appended to an incorrect, non-returned slice resulting in no logs found | ||||
* | | | Minor updates for release | obscuren | 2015-02-21 | 2 | -14/+33 |
| | | | |||||
* | | | Fixed chain event issue | obscuren | 2015-02-20 | 1 | -3/+1 |
| | | | |||||
* | | | fixed merge | obscuren | 2015-02-20 | 1 | -6/+3 |
|\ \ \ | |||||
* | | | | Removed exported fields from state object and added proper set/getters | obscuren | 2015-02-20 | 2 | -5/+5 |
| | | | | |||||
* | | | | dirty tracking for state objects fixed | obscuren | 2015-02-20 | 2 | -6/+3 |
| | | | | |||||
* | | | | Optimisations and fixed a couple of DDOS issues in the miner | obscuren | 2015-02-20 | 6 | -43/+63 |
|/ / / | |||||
* | | | Added errors | obscuren | 2015-02-18 | 1 | -0/+6 |
| | | | |||||
* | | | Added GetBlock GetUncle with OOB guard | obscuren | 2015-02-18 | 4 | -9/+59 |
| |/ |/| | |||||
* | | Changed to ChainEvent and fixed a nil pointer in transact | obscuren | 2015-02-18 | 1 | -2/+0 |
| | | |||||
* | | Filter and mutex locks added | obscuren | 2015-02-17 | 2 | -7/+29 |
| | | |||||
* | | "centralised" mining to backend. Closes #323 | obscuren | 2015-02-17 | 2 | -4/+3 |
| | | |||||
* | | Removed reference to lastBlockNumber & LastBlockNumber | obscuren | 2015-02-16 | 1 | -21/+5 |
| | | |||||
* | | Resolved some bugs in the miner | obscuren | 2015-02-15 | 1 | -1/+1 |
| | | | | | | | | | | | | * TODO nonce error sometimes persists * Fixed mining on wrong blocks * Fixed state error & receipt fail | ||||
* | | Reference pointer to block instead of pointer to function | obscuren | 2015-02-15 | 1 | -1/+1 |
| | | |||||
* | | Fixed mining & limited hash power | obscuren | 2015-02-14 | 2 | -2/+3 |
| | | |||||
* | | Update balance label when mining | obscuren | 2015-02-14 | 1 | -0/+2 |
| | | |||||
* | | Merge branch 'develop' into miner | obscuren | 2015-02-14 | 2 | -9/+0 |
|\ \ | |||||
| * | | merge | obscuren | 2015-02-13 | 2 | -14/+0 |
| | | | |||||
| * | | wip | obscuren | 2015-02-13 | 2 | -8/+13 |
| |\ \ | |||||
| | * | | cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p API | Felix Lange | 2015-02-06 | 2 | -9/+0 |
| | | | | |||||
* | | | | Merge branch 'develop' into miner | obscuren | 2015-02-12 | 2 | -45/+36 |
|\| | | | |||||
| * | | | Documented methods & removed old manifest | obscuren | 2015-02-12 | 1 | -29/+14 |
| | | | | |||||
| * | | | moved manager | obscuren | 2015-02-09 | 2 | -16/+22 |
| | | | | |||||
* | | | | Basic structure miner | obscuren | 2015-02-10 | 2 | -6/+15 |
| | | | | |||||
* | | | | merged | obscuren | 2015-02-09 | 2 | -19/+21 |
|\| | | | |||||
| * | | | Compare regardless of length | obscuren | 2015-02-08 | 1 | -1/+1 |
| |/ / | |||||
| * | | Undone fix. Will re-enable once chain resets | obscuren | 2015-02-06 | 1 | -12/+5 |
| | | | |||||
| * | | Merge pull request #290 from ↵ | Jeffrey Wilcke | 2015-02-06 | 1 | -6/+6 |
| |\ \ | | | | | | | | | | | | | | | | | Gustav-Simonsson/correct_block_parent_timestamp_check Correct block parent timestamp check and typos | ||||
| | * | | Correct block parent timestamp check and typos | Gustav Simonsson | 2015-02-04 | 1 | -6/+6 |
| | | | | |||||
| * | | | pending / chain event | obscuren | 2015-02-06 | 2 | -2/+11 |
| | | | | |||||
* | | | | Merge branch 'develop' into miner | obscuren | 2015-02-06 | 1 | -2/+3 |
|/ / / | |||||
* | | | Propagate known transactions to new peers on connect | obscuren | 2015-02-05 | 1 | -14/+9 |
| | | | |||||
* | | | Filtering | obscuren | 2015-02-05 | 4 | -14/+17 |
| | | | |||||
* | | | WIP miner | obscuren | 2015-02-04 | 2 | -48/+52 |
|/ / | |||||
* | | Docs & old code removed | obscuren | 2015-02-03 | 3 | -23/+26 |
| | | |||||
* | | Added (disabled) Jit validation | obscuren | 2015-02-01 | 3 | -2/+30 |
| | | |||||
* | | Merge branch 'bounty' into develop | obscuren | 2015-02-01 | 2 | -7/+23 |
|\ \ | |||||
| * | | Validate transactions sender before adding to pool. Closes #272 | obscuren | 2015-02-01 | 2 | -7/+23 |
| | | | |||||
* | | | Reimplemented message filters for rpc calls | obscuren | 2015-01-29 | 1 | -0/+21 |
| | | | |||||
* | | | Merge branch 'develop' into qt5.4 | obscuren | 2015-01-29 | 1 | -1/+7 |
|\ \ \ | |||||
| * | | | changed lost key | obscuren | 2015-01-29 | 2 | -2/+8 |
| | |/ | |/| | |||||
* | | | merge jsonrpc | obscuren | 2015-01-29 | 1 | -1/+1 |
|\ \ \ | |||||
| * | | | moving to a better xeth | obscuren | 2015-01-29 | 1 | -1/+1 |
| |/ / | |||||
* / / | reworking messages => log | obscuren | 2015-01-28 | 2 | -83/+56 |
|/ / | |||||
* | | Skip for travis | obscuren | 2015-01-25 | 1 | -0/+2 |
| | | |||||
* | | skipping for travis | obscuren | 2015-01-25 | 1 | -0/+4 |
|/ | |||||
* | Moved `obscuren` secp256k1-go | obscuren | 2015-01-22 | 1 | -1/+1 |
| | |||||
* | Future blocks not allowed | obscuren | 2015-01-22 | 1 | -21/+4 |
| | |||||
* | StdVm by default | obscuren | 2015-01-20 | 1 | -1/+1 |
| | |||||
* | VmDebug => StdVm | obscuren | 2015-01-19 | 1 | -1/+1 |
| | |||||
* | Fixed difficulty | obscuren | 2015-01-18 | 2 | -7/+5 |
| | | | | Difficulty was broken when refactored. |