aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/json_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core/types: use package hexutil for JSON handlingFelix Lange2016-11-281-232/+0
|
* core/types, params: EIP#155Jeffrey Wilcke2016-11-131-1/+4
|
* all: update license informationFelix Lange2016-11-091-0/+16
|
* core/types: renamed receiptRoot to receiptsRootBas van Kervel2016-10-051-4/+4
|
* core/types: add core type marshal methods tooPéter Szilágyi2016-09-081-0/+77
|
* core/types, core/vm: improve docs, add JSON marshaling methodsFelix Lange2016-08-041-0/+136
In this commit, core/types's types learn how to encode and decode themselves as JSON. The encoding is very similar to what the RPC API uses. The RPC API is missing some output fields (e.g. transaction signature values) which will be added to the API in a later commit. Some fields that the API generates are ignored by the decoder methods here.