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
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