aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/eth_args.go
Commit message (Collapse)AuthorAgeFilesLines
* rpc: return an unsupported error when "pending" was used to create a filterBas van Kervel2015-10-301-0/+7
|
* core, eth: receipt chain reconstructionPéter Szilágyi2015-10-191-1/+1
|
* cmd/evm, core/vm, test: refactored VM and coreJeffrey Wilcke2015-10-041-3/+3
| | | | | | | | | | | | | | | | | * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * core/vm: byte code VM moved to jump table instead of switch * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * Byte code VM now shares the same code as the JITVM * Renamed Context to Contract * Changed initialiser of state transition & unexported methods * Removed the Execution object and refactor `Call`, `CallCode` & `Create` in to their own functions instead of being methods. * Removed the hard dep on the state for the VM. The VM now depends on a Database interface returned by the environment. In the process the core now depends less on the statedb by usage of the env * Moved `Log` from package `core/state` to package `core/vm`.
* rpc/api: format pendingTx response. Fixes #1648Maran2015-08-161-8/+8
|
* miner, rpc: added submit hashrate for remote agentsJeffrey Wilcke2015-08-061-0/+31
|
* Merge pull request #1461 from bas-vk/eth_resendJeffrey Wilcke2015-08-021-0/+8
|\ | | | | Old transaction after resend was not removed from pool
| * bugfix, pending transaction was resend with new gas price/limit but not ↵Bas van Kervel2015-07-281-0/+8
| | | | | | | | removed from transaction pool
* | rpc: to in Call no longer required. Fixed eth_estimateGasJeffrey Wilcke2015-07-291-4/+0
| |
* | all: fix license headers one more timeFelix Lange2015-07-241-1/+1
| | | | | | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a.
* | all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-231-4/+4
|/ | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library".
* all: update license informationFelix Lange2015-07-071-0/+16
|
* rebase with developBas van Kervel2015-06-301-15/+24
|
* initialize fields to prevent nil pointer exceptionBas van Kervel2015-06-301-3/+8
|
* add json parsing method for resend transactionBas van Kervel2015-06-301-1/+76
|
* improved error handling in parsing requestBas van Kervel2015-06-301-1/+6
|
* added eth.resendBas van Kervel2015-06-301-0/+50
|
* added eth.pendingTransactionsBas van Kervel2015-06-301-0/+34
|
* fixed eth sign unittestBas van Kervel2015-06-221-6/+6
|
* added batch support to console and attach actionsBas van Kervel2015-06-221-18/+18
|
* Merge pull request #1267 from SilentCicero/developJeffrey Wilcke2015-06-191-0/+29
|\ | | | | eth_sendRawTransaction JSON RPC
| * New DataArgs and eth_sendRawTransactionSilentCicero2015-06-171-0/+29
| |
* | rpc/api: fixed default gas-(price) issue.obscuren2015-06-151-6/+2
|/
* added admin APIBas van Kervel2015-06-111-15/+15
|
* restructured eth rpc APIBas van Kervel2015-06-111-0/+835