1
0
Fork 0
forked from forks/go-ethereum
Commit graph

116 commits

Author SHA1 Message Date
Erez Wanderman
7227552f42 Fix ethereum compilation and functioning on Windows.
repl console output is now colored.
repl "exit" command now works.
2014-10-15 02:41:26 +03:00
obscuren
294b437414 New VM 2014-10-14 11:49:15 +02:00
obscuren
83a4b8b49b Version bump 2014-10-08 12:24:42 +02:00
obscuren
4ed94d3d51 removed old windows & added websockets to mist 2014-10-07 11:18:34 +02:00
obscuren
6db40ecb22 WebSocket interface
Web sockets handlers fully implemented. Filter handlers have yet to be
implemented.
2014-09-30 23:26:16 +02:00
obscuren
7a5b279459 Version bump 2014-09-26 13:35:48 +02:00
obscuren
96fd1ce270 Bump 2014-09-24 20:04:14 +02:00
obscuren
723074e71b dump 2014-09-19 13:32:52 +02:00
obscuren
5ac875b097 Set log level of std logger as well. (since gui logging is disabled) 2014-08-22 12:40:15 +02:00
obscuren
842f2cc8a0 Error window 2014-08-22 12:14:37 +02:00
obscuren
09c7d158d1 Error window 2014-08-22 12:12:41 +02:00
obscuren
48a99d23cd bump 2014-08-21 19:22:16 +02:00
obscuren
38cf52b62c Bumped version 2014-08-21 15:22:24 +02:00
obscuren
27735bbdfc State dumps from gui 2014-08-17 12:41:23 +02:00
obscuren
203c4b99a0 LookupDomain method to uilib 2014-08-15 13:45:34 +02:00
obscuren
c59d7a899b Added open js option for repetitive tasks in ethereal 2014-08-11 16:24:35 +02:00
obscuren
ce8f24e57a Moved JSRE to it's own package for sharing between ethere(um/al) 2014-08-11 16:24:17 +02:00
obscuren
c7afb5fb72 output dump string, not undefined 2014-08-06 10:05:34 +02:00
obscuren
852d1ee395 State dumps 2014-08-06 09:53:12 +02:00
zelig
34e937c976 merge upstream 2014-07-30 18:02:43 +02:00
obscuren
23f83f53cc Upped version number 2014-07-30 01:05:40 +02:00
obscuren
2e39efbe7c New State object 2014-07-24 12:34:48 +02:00
obscuren
a06a84d19b Refactored to reflect the new VM and State 2014-07-24 12:30:41 +02:00
zelig
4d5a890b46 merge upstream 2014-07-21 13:30:37 +01:00
obscuren
6c565eae74 bump 2014-07-17 15:36:16 +02:00
obscuren
28948d061c Moved the repl to a new package 2014-07-15 20:34:25 +02:00
zelig
75a7a4c97c ethreact
- use ethreact.Event,
- increased buffered event channels,
- subscribe after loop reading from channel starts
2014-07-15 01:13:39 +01:00
obscuren
d3e31a4a6d Special diff output + debugger changes 2014-07-11 16:04:27 +02:00
Jeffrey Wilcke
0c132e4c9e Revert "ethreact - Feature/ethutil refactor" 2014-07-07 10:58:42 +02:00
zelig
1e4ae24126 use ethreact.Event, unbuffered event channels, subscribe after loop reading from channel starts 2014-07-04 19:48:37 +01:00
zelig
9de30d96f0 Modify main wrappers
- 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)
2014-07-03 17:36:24 +01:00
zelig
27e1352c85 main loop uses new flags and common methods in util: db, keymanager set up 2014-06-29 18:37:22 +01:00
zelig
0ea9595d41 new command line options
- keyring: keyring/session identifier used by key manager
- keystore: choice of db/file key storage
- import message updated
- export: name of directory to export keys to (was bool)
2014-06-29 18:33:22 +01:00
zelig
e38b016547 changed name for ethutil hex functions 2014-06-29 18:32:48 +01:00
zelig
ae5ace1619 go fmt 2014-06-26 18:48:08 +01:00
zelig
21d86ca486 gui stop
- 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
2014-06-26 16:26:14 +01:00
zelig
2f96652bb4 interrupt handlers now ordered 2014-06-26 10:47:45 +01:00
zelig
6763d28a17 repl.Stop() to only if running, fixes panic after js> exit followed by interrupt 2014-06-25 18:18:22 +01:00
zelig
bf57e9603b add newline to help usage msg 2014-06-25 18:09:42 +01:00
zelig
8ee1abecb9 update log levels to include DebugDetail; correct default datadir for ethereal 2014-06-25 16:54:29 +01:00
zelig
08de13a57b merge upstream 2014-06-25 16:20:26 +01:00
obscuren
1e965cb8f5 Moved BlockDo to utils 2014-06-25 09:47:11 +02:00
obscuren
fd1ddbce68 Save repl history to file and recall on next session 2014-06-24 10:09:02 +02:00
obscuren
17e8d7519b Renamed execBlock 2014-06-24 09:36:05 +02:00
zelig
34284b7532 merge upstream 2014-06-23 12:30:30 +01:00
zelig
1024766514 refactor cli and gui wrapper code. Details:
- 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
2014-06-23 12:25:55 +01:00
zelig
7bcf875c57 add logging for jsre 2014-06-23 11:39:09 +01:00
zelig
f90001e938 add logging start/exit to js console 2014-06-23 11:38:14 +01:00
obscuren
176b780251 Added a execBlock method which replays the given block 2014-06-23 11:28:05 +02:00
obscuren
3744151359 Removed init fees 2014-06-16 11:15:08 +02:00