ethereumj-personal/TODO.md

51 lines
2.1 KiB
Markdown
Raw Normal View History

2014-09-11 09:29:26 +00:00
##### TODO list:
----------------
2014-12-29 13:12:41 +00:00
- [ ] just test for some change
2014-09-11 09:29:26 +00:00
- [ ] **GUI screen** a screen that will hold table with full state representation
2014-12-26 08:36:37 +00:00
- [ ] **SerpentCompiler** compile create(gas, mem_start, import("examples/mul2.se"))
2014-09-11 09:29:26 +00:00
https://github.com/ethereum/wiki/wiki/Serpent
- [ ] **SerpentCompiler** compile return(array) correct
- [ ] **ProgramPlayDialog** support internal calls
2014-12-26 08:36:37 +00:00
- [ ] **Performance:** BigInteger math change for constant arrays implementation
2014-09-11 09:29:26 +00:00
economy for memory allocation
2014-12-26 08:36:37 +00:00
- [ ] **Command Line:** add the headless run option
- [ ] **SerpentCompiler** Serpent new syntax:
(@> @< @/ @%) - unsigned operations
> < / % - default are all signed operations
+= -= *= /= %= @/= @%= - short form operations
2014-09-11 09:29:26 +00:00
share - code section
2014-12-26 08:36:37 +00:00
- [ ] **LLL_to_ASM compiler** list style language to EVM assembly compiler:
2014-09-11 09:29:26 +00:00
- [ ] **Use home-directory** Create .ethereumj in home-directory for blockchain, state & details database. Make configurable in system.properties so developer can choose user.dir without the creation of .ethereumj directory.
2014-12-26 08:36:37 +00:00
##### UnitTest:
2014-09-11 09:29:26 +00:00
----------------
2014-12-26 08:36:37 +00:00
- [ ] **VM complex:** CREATE testing
2014-09-11 09:29:26 +00:00
- [ ] **VM complex:** SUICIDE testing
- [ ] **SerpentCompiler** compile return(array) correct
- [ ] **WorldManager** apply transactions
##### DONE:
-----------
- [X] ** Block Queue ** separate net layer and block processing layer, net layer should continue get
blocks in time the vm layer process them (not stuck for it)
- [X] **Build:** extract core module and studio application
2014-12-26 08:36:37 +00:00
- [x] **VM execution:** support CALL op
- [x] **VM execution:** support CALL op with in/out data
2014-09-11 09:29:26 +00:00
- [x] **VM execution:** support CREATE op
- [x] **SerpentCompiler** compile create(gas, mem_start, mem_size)
- [x] **VM complex:** CALL testing for in arrays
- [x] **VM complex:** CALL testing for out result
2014-12-26 08:36:37 +00:00
- [x] **State management** trie for storage hash calculation
2014-09-11 09:29:26 +00:00
and update hash into AccountState
- [x] **VM execution:** SUICIDE op adjust
- [x] **Testing by JSON files:** follow cpp client performs test case by getting json file contains the test describe