aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/cmd.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd: properly initialize Olympic for all subcommandsPéter Szilágyi2015-10-071-13/+0
|
* cmd/geth, cmd/utils, core, rpc: renamed to blockchainJeffrey Wilcke2015-10-041-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 netJeffrey Wilcke2015-08-061-0/+2
|
* cmd, core, eth: support for the olympic networkJeffrey Wilcke2015-08-041-0/+17
| | | | Added a --olympic flag which initialiser the olympic protocol settings
* all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-231-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 disclaimerTaylor Gerring2015-07-211-9/+10
|
* Move text to separate fileTaylor Gerring2015-07-161-11/+0
|
* Prompt user to accept legalese when datadir doesn't existTaylor Gerring2015-07-161-6/+17
|
* all: add some godoc synopsis commentsFelix Lange2015-07-071-0/+1
|
* all: remove @author commentsFelix Lange2015-07-071-5/+0
|
* all: update license informationFelix Lange2015-07-071-15/+15
|
* cmd/utils: fix interrupt handling to actually see subsequent interruptsFelix Lange2015-07-061-1/+1
|
* cmd/geth, cmd/utils: improve interrupt handlingFelix Lange2015-07-061-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 argsTaylor Gerring2015-06-061-0/+15
|
* cmd/utils: use constant for import batch sizeFelix Lange2015-05-281-3/+6
|
* cmd/utils: skip batches with known blocks during importFelix Lange2015-05-281-3/+16
| | | | This makes block importing restartable.
* cmd/geth, cmd/utils: make chain importing interruptibleFelix Lange2015-05-281-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 fileFelix Lange2015-05-281-3/+10
|
* cmd/geth, cmd/utils: don't use Ethereum for import, export and upgradedbFelix Lange2015-05-281-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() methodTaylor Gerring2015-05-191-14/+0
|
* Refactor user prompts into utilsTaylor Gerring2015-05-191-0/+44
|
* core, cmd/geth, cmd/mist: cleanup. bump version 0.9.21obscuren2015-05-161-1/+1
|
* solidity compiler and contract metadocs integrationzelig2015-05-071-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 chainobscuren2015-04-291-2/+2
|
* cmd/rlpdump, cmd/utils, eth, p2p, whisper: use rlp input limitFelix Lange2015-04-171-1/+1
|
* Added blockchain DB versioning support, closes #650Bas van Kervel2015-04-131-3/+22
|
* Updated loggingobscuren2015-04-071-4/+4
|
* cmd/ethereum, cmd/utils: partial fix for chain importFelix Lange2015-03-181-4/+3
|
* core: use package rlp to encode blocksFelix Lange2015-03-181-15/+22
| | | | | This also changes the chain export format so there is no enclosing list around the blocks, which enables streaming export.
* Moved ethutil => commonobscuren2015-03-161-5/+5
|
* Merge branch origin/develop into accounts-integrationFelix Lange2015-03-111-24/+26
|\ | | | | | | | | | | | | Conflicts: cmd/blocktest/main.go cmd/mist/debugger.go cmd/utils/cmd.go
| * Merge pull request #449 from Gustav-Simonsson/add_blockchain_tests2Jeffrey Wilcke2015-03-101-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 nodeGustav Simonsson2015-03-101-0/+9
| | |
| * | Merge pull request #438 from ethersphere/poc9/cliJeffrey Wilcke2015-03-101-24/+17
| |\ \ | | |/ | |/| Poc9/cli (exportchain)
| | * add export blockchain subcommand, remove BlockDozelig2015-03-081-24/+17
| | |
* | | cmd/utils: remove extra space in fatal error messageFelix Lange2015-03-101-1/+1
| | |
* | | Merge ethereum/poc-9 into accounts-integrationFelix Lange2015-03-101-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.Interfaceobscuren2015-03-091-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 #416obscuren2015-03-071-1/+1
| |
* | cmd/utils: delete InitConfig, KeyTasksFelix Lange2015-03-101-40/+0
| |
* | rpc: add dataDir parameter and JSON-RPC handlerFelix Lange2015-03-101-12/+0
|/
* cmd/ethereum: improve command line interfaceFelix Lange2015-03-061-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-9obscuren2015-03-041-13/+0
|\ | | | | | | | | Conflicts: cmd/utils/cmd.go
| * Merge branch 'develop' of github.com:ethereum/go-ethereum into removewsTaylor Gerring2015-03-021-2/+2
| |\ | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go
| * | Remove Websockets RPC transportTaylor Gerring2015-03-011-13/+0
| | |
* | | mergeobscuren2015-03-041-2/+2
|\ \ \ | | |/ | |/|
| * | Add flag to set RPC portTaylor Gerring2015-02-281-2/+2
| |/
* / fixed pow stuffobscuren2015-03-041-39/+0
|/
* Cleanup importsTaylor Gerring2015-02-261-3/+0
|
* DRY DefaultAssetPath()Taylor Gerring2015-02-261-26/+0
|
* Update osext import pathTaylor Gerring2015-02-261-1/+1
|
* Added eth_logs & fixed issue with manual log filteringobscuren2015-02-221-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 minerMaran2015-02-191-1/+1
| | | | Defaults to the amount of cores available on the CPU
* cmd/ethereum, cmd/mist: add flag for discovery bootstrap nodesFelix Lange2015-02-071-2/+2
|
* cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p APIFelix Lange2015-02-061-4/+2
|
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-061-2/+2
|\
| * Move hardcoded seed node address to app flagTaylor Gerring2015-02-031-2/+2
| | | | | | | | Replaces functionality `-seed=true` with `-seed="ip:port"`
* | Update signature for rpc websocketsTaylor Gerring2015-02-021-1/+1
|/
* Remove old websocket implementationTaylor Gerring2015-01-291-3/+0
|
* further cleaned up xeth interfaceobscuren2015-01-291-1/+1
|
* Rename transport to wsTaylor Gerring2015-01-281-1/+1
| | | | Cleanup object naming for clarity
* Update CLI to use new Websocket RPCTaylor Gerring2015-01-281-4/+12
| | | | Use “wsport” flag to change default port
* Move HTTP transport to sub package of RPCTaylor Gerring2015-01-281-2/+2
|
* Move websockets out of cmd/utilTaylor Gerring2015-01-211-0/+8
|
* Refactored ethutil.Config.Db outobscuren2015-01-071-1/+3
|
* Added license headersobscuren2015-01-061-0/+21
|
* added shh back inobscuren2015-01-061-1/+5
|
* BlockManager => BlockProcessorobscuren2015-01-051-1/+1
|
* Cleaned up some of that utilobscuren2015-01-041-99/+4
|
* Switched to new trieobscuren2014-12-241-1/+1
|
* Moved import to utilsobscuren2014-12-231-0/+24
|
* Refactored block & Transactionobscuren2014-12-231-1/+1
| | | | * Includes new rlp decoder
* resolve merge conflict hellzelig2014-12-151-10/+1
|
* adapt cmd/cli to new backendzelig2014-12-151-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 backendzelig2014-12-151-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 #126obscuren2014-12-051-1/+1
|
* Set proper message valueobscuren2014-12-031-1/+1
|
* Implemented new miner w/ ui interface for merged mining. Closes #177obscuren2014-11-071-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 => BlockManagerobscuren2014-11-041-1/+1
|
* ethminer => minerobscuren2014-10-311-9/+9
|
* ethwire => wireobscuren2014-10-311-4/+4
|
* ethpipe => xeth (eXtended ETHereum)obscuren2014-10-311-2/+2
|
* Moved utils to cmdobscuren2014-10-311-0/+327