aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_object.go
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #32 from josephyzhou/developJeffrey Wilcke2014-07-041-1/+0
|\ | | | | typo, duplications
| * typo, duplicationsJoey Zhou2014-07-041-1/+0
| |
* | Fixed reverting errorobscuren2014-07-031-3/+2
|/
* Removed old methodobscuren2014-07-021-39/+28
|
* ethutil -> ethtrie.NewTriezelig2014-07-011-1/+1
|
* merge upstreamzelig2014-07-011-1/+4
|\
| * wipobscuren2014-06-301-1/+4
| |
* | change all modified calls to ethtrie, ethutil and ethcrypto functionszelig2014-06-301-4/+7
|/
* merge upstreamzelig2014-06-251-1/+0
|\
| * Logging orderobscuren2014-06-231-1/+0
| |
* | put back extra debug detail logging to the right places using ↵zelig2014-06-251-1/+1
| | | | | | | | logger.DebugDetailf
* | merge upstreamzelig2014-06-231-1/+8
|\|
| * Removed commentsobscuren2014-06-231-1/+1
| |
| * Moved 0 check to state object for nowobscuren2014-06-211-0/+7
| |
* | modified logging APIzelig2014-06-231-3/+3
|/ | | | | | - package vars for tagged loggers - weed out spurious fmt.PrintX and log.PrintX logging - tried to second guess loglevel for some :)
* Changed copy/setobscuren2014-06-201-1/+22
|
* Removal of manual updating of state objectsobscuren2014-06-171-11/+15
| | | | | * You'll only ever need to update the state by calling Update. Update will take care of the updating of it's child state objects.
* commentobscuren2014-06-171-1/+1
|
* Refund gasobscuren2014-06-161-0/+9
|
* Fixed minor issue with the gas poolobscuren2014-06-161-2/+2
|
* Moved gas limit err check to buy gasobscuren2014-06-161-3/+18
|
* Cache whole objects instead of states onlyobscuren2014-06-161-0/+21
|
* Moving a head closer to interopobscuren2014-06-131-3/+5
|
* Refactoring state transitioningobscuren2014-06-131-1/+1
|
* Added a buy gas methodobscuren2014-06-121-3/+18
|
* State snapshottingobscuren2014-05-261-1/+6
|
* Canonical contract creationobscuren2014-05-231-2/+1
|
* Working on interopobscuren2014-05-221-1/+1
| | | | | | * Receipts after each transaction * Fee structure * Applying fees to miners
* Fixed state overwriting issueobscuren2014-05-211-0/+1
|
* No longer store script directly in the state treeobscuren2014-05-201-9/+12
|
* Auto update state changes notificationsobscuren2014-05-091-1/+1
|
* Cleaned upobscuren2014-05-091-27/+2
| | | | | Removed the unneeded address watch mechanism. State manager's transient state should now take care of this.
* Added different storage notification objectobscuren2014-05-051-0/+6
|
* Removed debug logobscuren2014-05-021-1/+0
|
* Upped version numberobscuren2014-04-271-0/+4
|
* Added new state object change echanismobscuren2014-04-261-31/+36
|
* Updated VMobscuren2014-04-201-2/+20
|
* Merged accounts and contracts in to StateObjectobscuren2014-04-161-0/+162
* Account removed * Contract removed * Address state changed to CachedStateObject * Added StateObject