aboutsummaryrefslogtreecommitdiffstats
path: root/tests/transaction_test.go
Commit message (Collapse)AuthorAgeFilesLines
* params: fix golint warnings (#16853)kiel barry2018-06-051-1/+1
| | | params: fix golint warnings
* consensus, core, params: rebrand Metro to ByzantiumPéter Szilágyi2017-09-141-6/+6
|
* tests: update tests and implement general state tests (#14734)Felix Lange2017-07-111-95/+23
| | | | | | | | | | | | | | Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
* tests: updatedJeffrey Wilcke2016-11-141-6/+67
|
* tests: updated homestead testsJeffrey Wilcke2016-02-181-1/+23
|
* 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
|
* Add --skip option to CLITaylor Gerring2015-06-191-3/+3
| | | | | Disassociates hardcoded tests to skip when running via CLI. Tests still skipped when running `go test`
* More consistent test interfaces + test skippingTaylor Gerring2015-06-191-22/+3
|
* Cleanup/reorgTaylor Gerring2015-06-191-2/+0
|
* Fix pathsTaylor Gerring2015-06-191-3/+6
|
* Add bcTotalDifficultyTest and unskip now working tx testsGustav Simonsson2015-05-071-5/+1
|
* Exclude TransactionWithSvalue0 as it expects invalid s value to be validGustav Simonsson2015-04-231-0/+1
|
* Explicitly skip TransactionTests/tt10mbDataField.jsonGustav Simonsson2015-04-231-5/+2
|
* Fixes for TransactionTestsGustav Simonsson2015-04-161-11/+18
| | | | | | | | | * Include tests which now has consistent HEX encodings * Comment out two failing tests: " "TransactionWithHihghNonce" due to wrong nonce size "TransactionWithSvalueHigh" due to wrong ECDSA s range * Cleanup conversion functions and fix expected encodings for tests validation fields
* Enable more tx tests by expecting most common encoding of valuesGustav Simonsson2015-04-101-9/+2
|
* Remove unneeded map assignments for working tx RLP testsGustav Simonsson2015-04-101-7/+0
|
* Add TransactionTests wrapped as Go testsGustav Simonsson2015-04-101-0/+58
* Add initial go wrapping for TransactionTests with some tests disabled in lieu of consistent HEX encodings and a few other pending bugfixes * TODO: Consider better way of perhaps modelling each test in the JSON files as a single Go test, instead of one Go test per JSON file