aboutsummaryrefslogtreecommitdiffstats
path: root/mobile/big.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-12-08 20:09:26 +0800
committerFelix Lange <fjl@twurst.com>2016-12-08 20:09:26 +0800
commit0fe35b907addf1c066cb4d7c717bb23f9f2e7be4 (patch)
treece23037c4256b7c1ec4561d7477c33b328aa81e8 /mobile/big.go
parent3fc7c978277051391f8ea7831559e9f4f83c3166 (diff)
downloaddexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar
dexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.gz
dexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.bz2
dexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.lz
dexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.xz
dexon-0fe35b907addf1c066cb4d7c717bb23f9f2e7be4.tar.zst
dexon-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/big.go')
-rw-r--r--mobile/big.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/big.go b/mobile/big.go
index 6a358ba28..9a55836c1 100644
--- a/mobile/big.go
+++ b/mobile/big.go
@@ -78,7 +78,7 @@ func (bi *BigInts) Size() int {
}
// Get returns the bigint at the given index from the slice.
-func (bi *BigInts) Get(index int) (*BigInt, error) {
+func (bi *BigInts) Get(index int) (bigint *BigInt, _ error) {
if index < 0 || index >= len(bi.bigints) {
return nil, errors.New("index out of bounds")
}