Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmd/geth, cmd/utils: removed legalese | Jeffrey Wilcke | 2015-11-19 | 1 | -10/+0 |
| | | | | Removed the legalese confirmation dialog. This closes #1992 | ||||
* | console: | zelig | 2015-10-22 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lines with leading space are ommitted from history * exit processed even with whitespace around * all whitespace lines (not only empty ones) are ignored add 7 missing commands to admin api autocomplete registrar: methods now return proper error if reg addresses are not set. fixes #1457 rpc/console: fix personal.newAccount() regression. Now all comms accept interactive password registrar: add registrar tests for errors crypto: catch AES decryption error on presale wallet import + fix error msg format. fixes #1580 CLI: improve error message when starting a second instance of geth. fixes #1564 cli/accounts: unlock multiple accounts. fixes #1785 * make unlocking multiple accounts work with inline <() fd * passwdfile now correctly read only once * improve logs * fix CLI help text for unlocking fix regression with docRoot / admin API * docRoot/jspath passed to rpc/api ParseApis, which passes onto adminApi * docRoot field for JS console in order to pass when RPC is (re)started * improve flag desc for jspath common/docserver: catch http errors from response fix rpc/api tests common/natspec: fix end to end test (skipped because takes 8s) registrar: fix major regression: * deploy registrars on frontier * register HashsReg and UrlHint in GlobalRegistrar. * set all 3 contract addresses in code * zero out addresses first in tests | ||||
* | cmd: properly initialize Olympic for all subcommands | Péter Szilágyi | 2015-10-07 | 1 | -13/+0 |
| | |||||
* | cmd/geth, cmd/utils, core, rpc: renamed to blockchain | Jeffrey Wilcke | 2015-10-04 | 1 | -6/+6 |
| | | | | | | * Renamed ChainManager to BlockChain * Checkpointing is no longer required and never really properly worked when the state was corrupted. | ||||
* | cmd/utils, core: disable exp diff for olympic net | Jeffrey Wilcke | 2015-08-06 | 1 | -0/+2 |
| | |||||
* | cmd, core, eth: support for the olympic network | Jeffrey Wilcke | 2015-08-04 | 1 | -0/+17 |
| | | | | Added a --olympic flag which initialiser the olympic protocol settings | ||||
* | all: update license headers to distiguish GPL/LGPL | Felix Lange | 2015-07-23 | 1 | -2/+2 |
| | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". | ||||
* | Update disclaimer | Taylor Gerring | 2015-07-21 | 1 | -9/+10 |
| | |||||
* | Move text to separate file | Taylor Gerring | 2015-07-16 | 1 | -11/+0 |
| | |||||
* | Prompt user to accept legalese when datadir doesn't exist | Taylor Gerring | 2015-07-16 | 1 | -6/+17 |
| | |||||
* | all: add some godoc synopsis comments | Felix Lange | 2015-07-07 | 1 | -0/+1 |
| | |||||
* | all: remove @author comments | Felix Lange | 2015-07-07 | 1 | -5/+0 |
| | |||||
* | all: update license information | Felix Lange | 2015-07-07 | 1 | -15/+15 |
| | |||||
* | cmd/utils: fix interrupt handling to actually see subsequent interrupts | Felix Lange | 2015-07-06 | 1 | -1/+1 |
| | |||||
* | cmd/geth, cmd/utils: improve interrupt handling | Felix Lange | 2015-07-06 | 1 | -34/+16 |
| | | | | | | | | | The new strategy for interrupts is to handle them explicitly. Ethereum.Stop is now only called once, even if multiple interrupts are sent. Interrupting ten times in a row forces a panic. Fixes #869 Fixes #1359 | ||||
* | Allow export command to take first and last args | Taylor Gerring | 2015-06-06 | 1 | -0/+15 |
| | |||||
* | cmd/utils: use constant for import batch size | Felix Lange | 2015-05-28 | 1 | -3/+6 |
| | |||||
* | cmd/utils: skip batches with known blocks during import | Felix Lange | 2015-05-28 | 1 | -3/+16 |
| | | | | This makes block importing restartable. | ||||
* | cmd/geth, cmd/utils: make chain importing interruptible | Felix Lange | 2015-05-28 | 1 | -5/+33 |
| | | | | | | Interrupting import with Ctrl-C could cause database corruption because the signal wasn't handled. utils.ImportChain now checks for a queued interrupt on every batch. | ||||
* | cmd/utils: print errors only once if stdout and stderr are the same file | Felix Lange | 2015-05-28 | 1 | -3/+10 |
| | |||||
* | cmd/geth, cmd/utils: don't use Ethereum for import, export and upgradedb | Felix Lange | 2015-05-28 | 1 | -28/+21 |
| | | | | | | The blockchain commands don't need the full stack. With this change, p2p, miner, downloader, etc are no longer started for blockchain operations. | ||||
* | Remove unused confirm() method | Taylor Gerring | 2015-05-19 | 1 | -14/+0 |
| | |||||
* | Refactor user prompts into utils | Taylor Gerring | 2015-05-19 | 1 | -0/+44 |
| | |||||
* | core, cmd/geth, cmd/mist: cleanup. bump version 0.9.21 | obscuren | 2015-05-16 | 1 | -1/+1 |
| | |||||
* | solidity compiler and contract metadocs integration | zelig | 2015-05-07 | 1 | -11/+2 |
| | | | | | | | | | | | | | * common/compiler: solidity compiler + tests * rpc: eth_compilers, eth_compileSolidity + tests * fix natspec test using keystore API, notice exp dynamically changes addr, cleanup * resolver implements registrars and needs to create reg contract (temp) * xeth: solidity compiler. expose getter Solc() and paths setter SetSolc(solcPath) * ethereumApi: implement compiler related RPC calls using XEth - json struct tests * admin: make use of XEth.SetSolc to allow runtime setting of compiler paths * cli: command line flags solc to set custom solc bin path * js admin api with new features debug and contractInfo modules * wiki is the doc https://github.com/ethereum/go-ethereum/wiki/Contracts-and-Transactions | ||||
* | core: return the index of the block that failed when inserting a chain | obscuren | 2015-04-29 | 1 | -2/+2 |
| | |||||
* | cmd/rlpdump, cmd/utils, eth, p2p, whisper: use rlp input limit | Felix Lange | 2015-04-17 | 1 | -1/+1 |
| | |||||
* | Added blockchain DB versioning support, closes #650 | Bas van Kervel | 2015-04-13 | 1 | -3/+22 |
| | |||||
* | Updated logging | obscuren | 2015-04-07 | 1 | -4/+4 |
| | |||||
* | cmd/ethereum, cmd/utils: partial fix for chain import | Felix Lange | 2015-03-18 | 1 | -4/+3 |
| | |||||
* | core: use package rlp to encode blocks | Felix Lange | 2015-03-18 | 1 | -15/+22 |
| | | | | | This also changes the chain export format so there is no enclosing list around the blocks, which enables streaming export. | ||||
* | Moved ethutil => common | obscuren | 2015-03-16 | 1 | -5/+5 |
| | |||||
* | Merge branch origin/develop into accounts-integration | Felix Lange | 2015-03-11 | 1 | -24/+26 |
|\ | | | | | | | | | | | | | Conflicts: cmd/blocktest/main.go cmd/mist/debugger.go cmd/utils/cmd.go | ||||
| * | Merge pull request #449 from Gustav-Simonsson/add_blockchain_tests2 | Jeffrey Wilcke | 2015-03-10 | 1 | -0/+9 |
| |\ | | | | | | | Add empty total difficulty to test blocks and clean up stopping the node | ||||
| | * | Add empty total difficulty to test blocks and clean up stopping the node | Gustav Simonsson | 2015-03-10 | 1 | -0/+9 |
| | | | |||||
| * | | Merge pull request #438 from ethersphere/poc9/cli | Jeffrey Wilcke | 2015-03-10 | 1 | -24/+17 |
| |\ \ | | |/ | |/| | Poc9/cli (exportchain) | ||||
| | * | add export blockchain subcommand, remove BlockDo | zelig | 2015-03-08 | 1 | -24/+17 |
| | | | |||||
* | | | cmd/utils: remove extra space in fatal error message | Felix Lange | 2015-03-10 | 1 | -1/+1 |
| | | | |||||
* | | | Merge ethereum/poc-9 into accounts-integration | Felix Lange | 2015-03-10 | 1 | -1/+1 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go | ||||
| * | | Updated xeth instances to take extra param for ui.Interface | obscuren | 2015-03-09 | 1 | -1/+1 |
| |/ | | | | | | | | | | | Please be aware that if any of the instances on xeth.frontend are called the program will crash due to the default, temporarily, frontend interface. | ||||
| * | Separated block db from state db. Partial fix for #416 | obscuren | 2015-03-07 | 1 | -1/+1 |
| | | |||||
* | | cmd/utils: delete InitConfig, KeyTasks | Felix Lange | 2015-03-10 | 1 | -40/+0 |
| | | |||||
* | | rpc: add dataDir parameter and JSON-RPC handler | Felix Lange | 2015-03-10 | 1 | -12/+0 |
|/ | |||||
* | cmd/ethereum: improve command line interface | Felix Lange | 2015-03-06 | 1 | -9/+16 |
| | | | | | | | | | | The ethereum command line interface is now structured using subcommands. These separate the different tasks it can perform. Almost all flag names are backwards compatible. The key tasks have not been ported to subcommands since they will be replaced by the new accounts infrastructure very soon. | ||||
* | Merge branch 'develop' into poc-9 | obscuren | 2015-03-04 | 1 | -13/+0 |
|\ | | | | | | | | | Conflicts: cmd/utils/cmd.go | ||||
| * | Merge branch 'develop' of github.com:ethereum/go-ethereum into removews | Taylor Gerring | 2015-03-02 | 1 | -2/+2 |
| |\ | | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go | ||||
| * | | Remove Websockets RPC transport | Taylor Gerring | 2015-03-01 | 1 | -13/+0 |
| | | | |||||
* | | | merge | obscuren | 2015-03-04 | 1 | -2/+2 |
|\ \ \ | | |/ | |/| | |||||
| * | | Add flag to set RPC port | Taylor Gerring | 2015-02-28 | 1 | -2/+2 |
| |/ | |||||
* / | fixed pow stuff | obscuren | 2015-03-04 | 1 | -39/+0 |
|/ | |||||
* | Cleanup imports | Taylor Gerring | 2015-02-26 | 1 | -3/+0 |
| | |||||
* | DRY DefaultAssetPath() | Taylor Gerring | 2015-02-26 | 1 | -26/+0 |
| | |||||
* | Update osext import path | Taylor Gerring | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Added eth_logs & fixed issue with manual log filtering | obscuren | 2015-02-22 | 1 | -1/+1 |
| | | | | | | * Implemented `eth_logs` * Fixed issue with `filter.Find()` where logs were appended to an incorrect, non-returned slice resulting in no logs found | ||||
* | Implement command line argument to set the amount of agents created by the miner | Maran | 2015-02-19 | 1 | -1/+1 |
| | | | | Defaults to the amount of cores available on the CPU | ||||
* | cmd/ethereum, cmd/mist: add flag for discovery bootstrap nodes | Felix Lange | 2015-02-07 | 1 | -2/+2 |
| | |||||
* | cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p API | Felix Lange | 2015-02-06 | 1 | -4/+2 |
| | |||||
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-06 | 1 | -2/+2 |
|\ | |||||
| * | Move hardcoded seed node address to app flag | Taylor Gerring | 2015-02-03 | 1 | -2/+2 |
| | | | | | | | | Replaces functionality `-seed=true` with `-seed="ip:port"` | ||||
* | | Update signature for rpc websockets | Taylor Gerring | 2015-02-02 | 1 | -1/+1 |
|/ | |||||
* | Remove old websocket implementation | Taylor Gerring | 2015-01-29 | 1 | -3/+0 |
| | |||||
* | further cleaned up xeth interface | obscuren | 2015-01-29 | 1 | -1/+1 |
| | |||||
* | Rename transport to ws | Taylor Gerring | 2015-01-28 | 1 | -1/+1 |
| | | | | Cleanup object naming for clarity | ||||
* | Update CLI to use new Websocket RPC | Taylor Gerring | 2015-01-28 | 1 | -4/+12 |
| | | | | Use “wsport” flag to change default port | ||||
* | Move HTTP transport to sub package of RPC | Taylor Gerring | 2015-01-28 | 1 | -2/+2 |
| | |||||
* | Move websockets out of cmd/util | Taylor Gerring | 2015-01-21 | 1 | -0/+8 |
| | |||||
* | Refactored ethutil.Config.Db out | obscuren | 2015-01-07 | 1 | -1/+3 |
| | |||||
* | Added license headers | obscuren | 2015-01-06 | 1 | -0/+21 |
| | |||||
* | added shh back in | obscuren | 2015-01-06 | 1 | -1/+5 |
| | |||||
* | BlockManager => BlockProcessor | obscuren | 2015-01-05 | 1 | -1/+1 |
| | |||||
* | Cleaned up some of that util | obscuren | 2015-01-04 | 1 | -99/+4 |
| | |||||
* | Switched to new trie | obscuren | 2014-12-24 | 1 | -1/+1 |
| | |||||
* | Moved import to utils | obscuren | 2014-12-23 | 1 | -0/+24 |
| | |||||
* | Refactored block & Transaction | obscuren | 2014-12-23 | 1 | -1/+1 |
| | | | | * Includes new rlp decoder | ||||
* | resolve merge conflict hell | zelig | 2014-12-15 | 1 | -10/+1 |
| | |||||
* | adapt cmd/cli to new backend | zelig | 2014-12-15 | 1 | -0/+9 |
| | | | | | | | | | | - new flag nat for nat support UPNP|PMP - new flag pmp for PMP gateway IP - add NatType to utils/cmd to get p2p.NAT from nat type string - obsolete usepnp flag - get rid of IsUpToDate and sleep in miner start - ethereum constructor takes nat type, port, maxpeer - add pubkey arg to client identity | ||||
* | adapt to new backend | zelig | 2014-12-15 | 1 | -14/+24 |
| | | | | | | | | | - eth p2p pkgs - new Ethereum initialiser - no caps param - use nat type - add NatType func to map nat type string to p2p.NAT - add pubkey to client identity | ||||
* | Show newly created private key during startup. Closes #126 | obscuren | 2014-12-05 | 1 | -1/+1 |
| | |||||
* | Set proper message value | obscuren | 2014-12-03 | 1 | -1/+1 |
| | |||||
* | Implemented new miner w/ ui interface for merged mining. Closes #177 | obscuren | 2014-11-07 | 1 | -1/+1 |
| | | | | | | | | * Miner has been rewritten * Added new miner pane * Added option for local txs * Added option to read from MergeMining contract and list them for merged mining | ||||
* | StateManager => BlockManager | obscuren | 2014-11-04 | 1 | -1/+1 |
| | |||||
* | ethminer => miner | obscuren | 2014-10-31 | 1 | -9/+9 |
| | |||||
* | ethwire => wire | obscuren | 2014-10-31 | 1 | -4/+4 |
| | |||||
* | ethpipe => xeth (eXtended ETHereum) | obscuren | 2014-10-31 | 1 | -2/+2 |
| | |||||
* | Moved utils to cmd | obscuren | 2014-10-31 | 1 | -0/+327 |