diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/_ak_coin | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/_ak_coin b/lib/_ak_coin new file mode 100755 index 0000000..fda3bc0 --- /dev/null +++ b/lib/_ak_coin @@ -0,0 +1,14 @@ +#!/bin/bash +# coin max is 10,000.0000000 +# but we count in integer to avoid floating point arithmetic :P +# +# Note that this is subject to change when implemented in C +# +COINBASE=100000000000 + +GENESIS="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + +_ak_coin_stats(){ + echo "Coinbase: $COINBASE" + echo "Genesis: $GENESIS" +} |