Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
47226727
Topic
5056548
Board
Development & Technical Discussion
Re: Best data type for Bitcoin in go
by
ETFbitcoin
on
24/10/2018, 16:35:11 UTC
As FoxPup mentioned,
int64
is best choice since it's enough even to specify total Bitcoin supply (in Satoshi).
Additionally, it's easier to use/implement since not all software uses same
double
/
float64
standard and AFAIK
int64
is faster.