aboutsummaryrefslogtreecommitdiffstats
path: root/mobile/ethclient.go
Commit message (Collapse)AuthorAgeFilesLines
* core/vm: move Log to core/typesFelix Lange2017-01-061-3/+2
| | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal.
* mobile: iOS naming and API fixes for generators and Swift (#3408)Péter Szilágyi2016-12-081-78/+78
| | | | | * build: modify the iOS namespace to iGeth (gomobile limitation) * mobile: assign names to return types for ObjC wrapper * mobile: use more expanded names for iOS/Swift API
* ethclient, ethereum: add NotFound, split transactions out of ChainReaderFelix Lange2016-12-051-1/+2
| | | | | | | | | ethclient now returns ethereum.NotFound if the server returns null and no error while accessing blockchain data. The light client cannot provide arbitrary transactions. The change to split transaction access into its own interface emphasizes that transactions should not be relied on and recommends use of logs.
* mobile: initial wrappers for mobile supportPéter Szilágyi2016-11-141-0/+305