aboutsummaryrefslogtreecommitdiffstats
path: root/core/state_transition.go
Commit message (Collapse)AuthorAgeFilesLines
* Moved logging to logger.Coreobscuren2015-04-041-4/+3
|
* Read most protocol params from common/params.jsonGustav Simonsson2015-04-021-4/+5
| | | | | | | | | * Add params package with exported variables generated from github.com/ethereum/common/blob/master/params.json * Use params package variables in applicable places * Add check for minimum gas limit in validation of block's gas limit * Remove common/params.json from go-ethereum to avoid outdated version of it
* Blocktest fixed, Execution fixedobscuren2015-04-011-4/+5
| | | | | | * Added new CreateAccount method which properly overwrites previous accounts (excluding balance) * Fixed block tests (100% success)
* Cleaned up changesobscuren2015-03-241-5/+2
|
* Modified according to poc 9 changesobscuren2015-03-241-1/+1
| | | | * Refund of value
* Updated for PV59obscuren2015-03-241-8/+7
| | | | * Value XFER are refunded back to the sender if the execution fails
* moved state and vm to coreobscuren2015-03-231-2/+2
|
* conversions. -compilable-obscuren2015-03-181-0/+6
|
* Fixed VM & Tests w/ conversionobscuren2015-03-171-10/+9
|
* core: actually convert transaction poolFelix Lange2015-03-171-10/+9
|
* Merge remote-tracking branch 'ethereum/conversion' into conversionFelix Lange2015-03-171-9/+13
|\
| * converted vmobscuren2015-03-171-9/+13
| |
* | core: adapt Message for new Transaction.From signatureFelix Lange2015-03-171-2/+3
|/
* updated vm envobscuren2015-03-171-3/+3
|
* Moved ethutil => commonobscuren2015-03-161-4/+4
|
* Return proper errorobscuren2015-03-141-0/+3
|
* Removed some of that gas pre pay magicobscuren2015-03-131-22/+25
|
* Lowered default gas price and increased default gas limitobscuren2015-03-121-0/+2
|
* Improved error reporting and removed commented codeobscuren2015-03-111-32/+1
|
* Merge ethereum/poc-9 into accounts-integrationFelix Lange2015-03-101-3/+9
|\ | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go
| * Spec changes.obscuren2015-03-061-3/+10
| | | | | | | | * All errors during state transition result in an invalid tx
* | core: remove Hash method from Message interfaceFelix Lange2015-03-101-3/+2
|/ | | | This will simplify the next commmit. Hash was only used for logging.
* Fixed error for invalid transactionobscuren2015-03-031-7/+6
|
* Updated gast costsobscuren2015-03-031-8/+4
|
* New gas prices modelobscuren2015-03-021-3/+9
|
* Bumpobscuren2015-02-271-4/+1
|
* Fixed consensus issue for refundingobscuren2015-02-271-3/+6
| | | | * Refund should _always_ go to the origin
* Removed exported fields from state object and added proper set/gettersobscuren2015-02-201-4/+4
|
* Optimisations and fixed a couple of DDOS issues in the minerobscuren2015-02-201-1/+2
|
* Docs & old code removedobscuren2015-02-031-21/+25
|
* Added (disabled) Jit validationobscuren2015-02-011-0/+25
|
* Fixed consensus issueobscuren2015-01-131-2/+1
|
* Changed prev_hash to block_hash, state transition now uses vm envobscuren2015-01-041-20/+21
| | | | | | | * PREVHASH => BLOCKHASH( N ) * State transition object uses VMEnv as it's query interface * Updated vm.Enviroment has GetHash( n ) for BLOCKHASH instruction * Added GetHash to xeth, core, utils & test environments
* Closure => Contextobscuren2015-01-021-1/+1
|
* Minor updates on gas and removed/refactored old code.obscuren2014-12-201-11/+10
|
* Removed OOG check. Revert should always happen.obscuren2014-12-191-2/+9
|
* Transaction was generating incorrect hash because of var changesobscuren2014-12-191-1/+1
|
* Fixed refund modelobscuren2014-12-191-6/+4
|
* Gas corrections and vm fixesobscuren2014-12-191-36/+37
|
* Moved methods to messagesobscuren2014-12-181-4/+6
|
* Created generic message (easy for testing)obscuren2014-12-181-32/+66
|
* null ptr fixobscuren2014-12-041-4/+3
|
* Renamed State => StateDBobscuren2014-12-041-3/+3
|
* Renamed `chain` => `core`obscuren2014-12-041-0/+198