How do one convert a big int to a string (or integer) in Golang?
bigint := big.NewInt(123) //This is what I have bigstr = \"123\" //This is what I want >
bigint := big.NewInt(123) //This is what I have bigstr = \"123\" //This is what I want
I used the following:
bigint := big.NewInt(1231231231231) bigstr := fmt.Sprint(bigint)