blob: fda3bc0bc845b5232454d90d2201fa5b1eb3de31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"
}
|