Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | accounts: golint updates for this or self warning (#16627) | kiel barry | 2018-05-02 | 1 | -4/+4 |
| | |||||
* | accounts/abi/bind: support event filtering in abigen | Péter Szilágyi | 2018-01-24 | 1 | -0/+11 |
| | |||||
* | acounts/abi: refactor abi, generalize abi pack/unpack to Arguments | Martin Holst Swende | 2017-12-23 | 1 | -88/+1 |
| | |||||
* | accounts/abi: satisfy most of the linter warnings | Robert Zaremba | 2017-12-21 | 1 | -5/+2 |
| | | | | | | | + adding missing comments + small cleanups which won't significantly change function body. + unify Method receiver name | ||||
* | accounts/abi: fix event unpack into slice | Robert Zaremba | 2017-12-21 | 1 | -13/+10 |
| | | | | | | | | | | | | | | + The event slice unpacker doesn't correctly extract element from the slice. The indexed arguments are not ignored as they should be (the data offset should not include the indexed arguments). + The `Elem()` call in the slice unpack doesn't work. The Slice related tests fails because of that. + the check in the loop are suboptimal and have been extracted out of the loop. + extracted common code from event and method tupleUnpack | ||||
* | accounts/abi: fix event tupleUnpack | Robert Zaremba | 2017-12-21 | 1 | -7/+7 |
| | | | | | Event.tupleUnpack doesn't handle correctly Indexed arguments, hence it can't unpack an event with indexed arguments. | ||||
* | accounts/abi: update array length after parsing array (#15618) | Dmitry Shulyak | 2017-12-20 | 1 | -3/+5 |
| | | | Fixes #15617 | ||||
* | accounts/abi: improve type handling, add event support (#14743) | RJ Catalano | 2017-10-17 | 1 | -0/+91 |
| | |||||
* | accounts/abi: add support for "anonymous" and "indexed" for events (#3464) | bas-vk | 2016-12-22 | 1 | -3/+5 |
| | |||||
* | all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}() | Ricardo Catalinas Jiménez | 2016-02-22 | 1 | -1/+1 |
| | | | | As we aren't really using the standarized SHA-3 | ||||
* | account/abi: implements event parsing | Jeffrey Wilcke | 2016-02-02 | 1 | -0/+44 |
Implementation of basic event parsing and its input types. This separates methods and events and fixes an issue with go type parsing and validation. |