aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate/state_object.go
Commit message (Collapse)AuthorAgeFilesLines
* ethcrypto => cryptoobscuren2014-10-311-2/+2
|
* Merge eth-go repository into go-ethereumFelix Lange2014-10-231-3/+3
| | | | mist, etheruem have been moved to cmd/
* added a transfer method to vm envobscuren2014-10-221-18/+22
|
* Use the state instead of the state object directly.obscuren2014-10-161-0/+4
| | | | | | | If a state gets reset and you still hold a pointer to the previous, incorrect, state object you'll operate on the wrong object. Using the state to set/get objects and attributes you won't have this problem since the state will always have the correct object.
* Fixed remote Arithmetic testsobscuren2014-10-151-6/+4
|
* Renamed Sha3Bin to Sha3obscuren2014-10-081-1/+1
|
* Improved catching up and refactoredobscuren2014-09-151-5/+10
|
* Added GetCode methodobscuren2014-09-081-1/+5
|
* Implemented POSTobscuren2014-08-251-0/+6
|
* ethstate.NewState => ethstate.Newobscuren2014-08-041-3/+3
|
* ethtrie.NewTrie => ethtrie.Newobscuren2014-08-041-21/+3
|
* Old code removed and renamed amount to balanceobscuren2014-07-301-19/+20
|
* Refactored to new state and vmobscuren2014-07-241-24/+20
|
* Minor improvements and fixes to the new vm structureobscuren2014-07-221-1/+1
|
* Refactored state, state object and vmobscuren2014-07-221-0/+339
* The State and StateObject have been moved to their own package * The VM is moved to it's own package