aboutsummaryrefslogtreecommitdiffstats
path: root/chain/execution.go
Commit message (Collapse)AuthorAgeFilesLines
* Renamed `chain` => `core`obscuren2014-12-041-80/+0
|
* Moved execution from vm to chain.obscuren2014-12-041-0/+80
This moves call and create to the specified environments. Vms are no longer re-used. Vm uses environment's Call(Code) and Create in order to execute new contracts or transfer value between accounts. State transition now uses the same mechanism described above.