blob: e289841eb32307c03abd0ca31ab46dcd52a1aabe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env 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"
}
|