aboutsummaryrefslogtreecommitdiffstats
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* Moved utils to cmdobscuren2014-10-313-529/+0
|
* ethlog => loggerobscuren2014-10-311-17/+17
|
* ethcrypto => cryptoobscuren2014-10-311-7/+7
|
* Moved ethchain to chainobscuren2014-10-311-3/+3
|
* Moved logging to state, proper structured blockobscuren2014-10-301-1/+1
| | | | | | * Moved logs to state so it's subject to snapshotting * Split up block header * Removed logs from transactions and made them receipts only
* events should be set prior to calling mainloopobscuren2014-10-271-1/+1
|
* Implemented LOG. Closes #159obscuren2014-10-271-0/+1
|
* Merge eth-go repository into go-ethereumFelix Lange2014-10-233-16/+16
|\ | | | | | | mist, etheruem have been moved to cmd/
| * delete?obscuren2014-07-021-253/+0
| |
* | Reflect VM Env changesobscuren2014-10-231-0/+4
| |
* | Reflect RPC changesobscuren2014-10-211-2/+2
| |
* | Updated to reflect BlockChain changesobscuren2014-10-201-3/+3
| |
* | Updated vmobscuren2014-10-171-0/+1
| |
* | New VMobscuren2014-10-141-2/+5
| |
* | WebSocket interfaceobscuren2014-10-011-0/+161
| | | | | | | | | | Web sockets handlers fully implemented. Filter handlers have yet to be implemented.
* | mistobscuren2014-09-191-1/+1
| |
* | Rename and changed peer windowobscuren2014-09-171-2/+2
| |
* | Set log level of std logger as well. (since gui logging is disabled)obscuren2014-08-221-2/+6
| |
* | Error windowobscuren2014-08-221-1/+10
| |
* | Switched over to ethpipeobscuren2014-08-161-2/+2
| |
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2014-08-151-1/+0
|\ \
| * \ Merge pull request #115 from ethersphere/developJeffrey Wilcke2014-08-151-1/+0
| |\ \ | | | | | | | | remove mnemonic words initialisation
| | * | remove mmenomic words initialisation (mnemonic wordlist now inline to ↵zelig2014-08-121-1/+0
| | | | | | | | | | | | | | | | support binary builds without extra asset)
* | | | Moving over to ethpipeobscuren2014-08-151-0/+14
|/ / /
* / / Got rid of warnings and updated storage gettersobscuren2014-08-151-10/+11
|/ /
* | Added open js option for repetitive tasks in etherealobscuren2014-08-111-1/+3
| |
* | merge upstreamzelig2014-07-311-0/+33
|\ \
| * | Refactored to reflect the new VM and Stateobscuren2014-07-241-0/+33
| | |
* | | merge upstreamzelig2014-07-211-4/+41
|\| |
| * | Fixed miner stopping / starting:wq0.5.190.5.18obscuren2014-07-181-2/+8
| | |
| * | Fixed miner channelobscuren2014-07-181-3/+3
| |\ \
| * | | WIP to expose hashrate to guiMaran2014-07-181-0/+4
| |/ /
| * | Work around crash issues when building OSX binaryMaran2014-07-151-0/+1
| | |
| * | Rewrote mnemonic word loading to facilitate deployable builds.Maran2014-07-151-0/+29
| | |
* | | fix start miningzelig2014-07-151-4/+3
|/ /
* | Modify main wrapperszelig2014-07-041-5/+10
| | | | | | | | | | | | | | - clientIdentifier now set in main wrappers - version handled within wrapper - modify InitConfig now returning *ethutil.ConfigManager (passed to gui) - added NewClientIdentity returning *ethwire.SimpleClientIdentiy (passed to ethereum)
* | Fixed nameregobscuren2014-07-021-0/+3
| |
* | Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/keyszelig2014-07-011-1/+1
|\ \ | |/ |/|
| * fix: miner wait untill UpToDateEthan Buchman2014-07-011-1/+1
| |
* | Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/keyszelig2014-06-301-0/+4
|\|
| * Wait for catchup when starting the minerobscuren2014-06-291-0/+4
| |
* | added utility functions to set up db, keymanager, ethereum init and simplify ↵zelig2014-06-301-46/+50
| | | | | | | | key tasks
* | remove keys file, now subsumed under ethcrypto/key_managerzelig2014-06-301-108/+0
| |
* | fix logmessage if data directory doesn't existzelig2014-06-291-1/+1
|/
* go fmtzelig2014-06-271-163/+163
|
* gui stopzelig2014-06-261-5/+8
| | | | | | | | - introduce gui.Stop() - remember state with open - stopping ethereum stack is not gui concern, moved to main - stopping mining, gui and ethereum handled via interrupt callbacks - ^C triggers exactly the same behaviour as quit via menu
* interrupt handlers now orderedzelig2014-06-261-11/+14
|
* Merge remote-tracking branch 'upstream/develop' into feature/loggingzelig2014-06-251-41/+0
|\
| * Removed old compile methodsobscuren2014-06-251-41/+0
| |
* | merge upstreamzelig2014-06-251-0/+18
|\|
| * Moved BlockDo to utilsobscuren2014-06-251-0/+19
| |
* | merge upstreamzelig2014-06-231-3/+0
|\|
| * Added a execBlock method which replays the given blockobscuren2014-06-231-3/+5
| |
* | refactor cli and gui wrapper code. Details:zelig2014-06-231-50/+200
|/ | | | | | | | | | | | | | | | | | - all cli functions shared between ethereum and ethereal abstracted to utils/ cmd.go (should be ethcommon or shared or sth) - simplify main() now readable stepwise - rename main wrapper files to main.go - rename commmand line args definition file from config.go to flags.go - rename Do -> Start to parallel option names - register interrupt for rpc server stop - fix interrupt stopping js repl and ethereum - register interrupt for mining stop - custom config file option from command line - debug option from command line - loglevel option from command line - changed ethutil.Config API - default datadir and default config file set together with other flag defaults in wrappers - default assetpath set together with other command line flags defaults in gui wrapper (not in ethutil.Config or ui/ui_lib) - options precedence: default < config file < environment variables < command line
* Improved UIobscuren2014-05-301-2/+0
| | | | * Added mining button
* Fix merge conflictsMaran2014-05-221-0/+30
|\
| * Added mining stop and startobscuren2014-05-221-8/+30
| |
* | Wait with mining until up to dateMaran2014-05-211-5/+4
|/
* Changed loggingobscuren2014-05-191-4/+3
|
* Readline repl for linux & osxobscuren2014-05-171-3/+5
|
* Fix merge conflictsMaran2014-05-142-9/+61
|\
| * Switched to new keyring methodsobscuren2014-05-142-8/+60
| |
* | Make sure we have a coinbase address to mine withMaran2014-05-141-4/+10
| |
* | Refactored RPC client to utils so it can be reusedMaran2014-05-141-1/+12
| |
* | Rewritten a check to only start mining once we are caught up with all peersMaran2014-05-141-6/+9
|/
* Refactored mining into utils and exposed it to ethereal. Partly fixes #43Maran2014-05-141-0/+31
|
* Upgraded to new mutanobscuren2014-05-101-1/+1
|
* Moved public interfaceobscuren2014-05-022-201/+0
|
* Fixed samplecoinobscuren2014-05-022-13/+24
|
* Moved Ext ethereum apiobscuren2014-05-022-0/+190
| | | | | Moved the external ethereum api which can be used by any 3rd party application.
* PreProcess moved to Mutan packageCasey Kuhlman2014-04-281-2/+1
|
* Using mutan assembler stageobscuren2014-04-281-2/+2
|
* Refactored codeobscuren2014-04-231-0/+18
|
* Moved compiling related object to utils packageobscuren2014-04-161-0/+24
|
* Added mnemonic priv keyMaran2014-04-071-2/+3
|
* Major re-organisation.obscuren2014-03-221-0/+50
The Ethereum node and Gui are now separated.