diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-12-08 20:09:26 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-12-08 20:09:26 +0800 |
commit | 0fe35b907addf1c066cb4d7c717bb23f9f2e7be4 (patch) | |
tree | ce23037c4256b7c1ec4561d7477c33b328aa81e8 /mobile/ethereum.go | |
parent | 3fc7c978277051391f8ea7831559e9f4f83c3166 (diff) | |
download | go-tangerine-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.gz go-tangerine-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.zst go-tangerine-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.zip |
mobile: iOS naming and API fixes for generators and Swift (#3408)
* 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
Diffstat (limited to 'mobile/ethereum.go')
-rw-r--r-- | mobile/ethereum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/ethereum.go b/mobile/ethereum.go index 6e8046ac9..94f707a87 100644 --- a/mobile/ethereum.go +++ b/mobile/ethereum.go @@ -93,7 +93,7 @@ func (t *Topics) Size() int { } // Get returns the topic list at the given index from the slice. -func (t *Topics) Get(index int) (*Hashes, error) { +func (t *Topics) Get(index int) (hashes *Hashes, _ error) { if index < 0 || index >= len(t.topics) { return nil, errors.New("index out of bounds") } |