mobile: remove support for Go < 1.7

This commit is contained in:
Felix Lange
2017-03-22 19:48:15 +01:00
parent c213fd1fd8
commit 9a2720fb35
2 changed files with 5 additions and 26 deletions

View File

@ -93,3 +93,8 @@ func (bi *BigInts) Set(index int, bigint *BigInt) error {
bi.bigints[index] = bigint.bigint
return nil
}
// GetString returns the value of x as a formatted string in some number base.
func (bi *BigInt) GetString(base int) string {
return bi.bigint.Text(base)
}