aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate
Commit message (Collapse)AuthorAgeFilesLines
* ethlog => loggerobscuren2014-10-311-2/+2
|
* ethcrypto => cryptoobscuren2014-10-311-2/+2
|
* Moved logging to state, proper structured blockobscuren2014-10-302-0/+57
| | | | | | * Moved logs to state so it's subject to snapshotting * Split up block header * Removed logs from transactions and made them receipts only
* Refund SSTORE properlyobscuren2014-10-281-1/+25
|
* Added generic add balance methodobscuren2014-10-271-0/+7
|
* Merge eth-go repository into go-ethereumFelix Lange2014-10-234-10/+10
| | | | mist, etheruem have been moved to cmd/
* added a transfer method to vm envobscuren2014-10-223-20/+24
|
* Use the state instead of the state object directly.obscuren2014-10-162-0/+29
| | | | | | | 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-152-6/+13
|
* Couple of minor issues fixedobscuren2014-10-151-1/+5
| | | | | * CALLVALUE pushed incorrect value to the stack * Set execution model to closure
* Renamed Sha3Bin to Sha3obscuren2014-10-081-1/+1
|
* Minor tweaks for poc7obscuren2014-10-081-6/+8
|
* Improved catching up and refactoredobscuren2014-09-153-8/+14
|
* Added GetCode methodobscuren2014-09-082-1/+14
|
* Implemented POSTobscuren2014-08-251-0/+6
|
* Changed log statementsobscuren2014-08-221-1/+1
|
* Removed the "Get" partobscuren2014-08-181-1/+2
|
* Dump bytes instead of stringsobscuren2014-08-171-2/+2
|
* Added message to closure && added change addressesobscuren2014-08-152-24/+8
|
* Removed old codeobscuren2014-08-151-1/+2
|
* Updated chain for filteringobscuren2014-08-111-41/+4
|
* Added bloom filter & block filter methodsobscuren2014-08-111-0/+67
|
* Added state dump methodobscuren2014-08-061-0/+47
|
* ethstate.NewState => ethstate.Newobscuren2014-08-043-7/+8
|
* ethtrie.NewTrie => ethtrie.Newobscuren2014-08-041-21/+3
|
* Old code removed and renamed amount to balanceobscuren2014-07-302-21/+23
|
* Refactored to new state and vmobscuren2014-07-242-50/+46
|
* Minor improvements and fixes to the new vm structureobscuren2014-07-221-1/+1
|
* Refactored state, state object and vmobscuren2014-07-225-0/+656
* The State and StateObject have been moved to their own package * The VM is moved to it's own package