aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-07-23 17:45:10 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-07-23 17:45:10 +0300
commit7a33ba00feb3fb4bc145db8be5e0e9f23cbcf58a (patch)
tree5f1a99464cbcdb1c32cf34123e26756c44974847
parenta30b682af45c35418b64336e45e8c3404acddeac (diff)
downloadarching-kaos-tools-7a33ba00feb3fb4bc145db8be5e0e9f23cbcf58a.tar.gz
arching-kaos-tools-7a33ba00feb3fb4bc145db8be5e0e9f23cbcf58a.tar.bz2
arching-kaos-tools-7a33ba00feb3fb4bc145db8be5e0e9f23cbcf58a.zip
some coin based functions to come
-rwxr-xr-xbin/ak-get-balances10
-rwxr-xr-xlib/_ak_coin14
2 files changed, 15 insertions, 9 deletions
diff --git a/bin/ak-get-balances b/bin/ak-get-balances
index 0386a04..5fe56ea 100755
--- a/bin/ak-get-balances
+++ b/bin/ak-get-balances
@@ -17,18 +17,10 @@ source $AK_LIBDIR/_ak_gpg
source $AK_LIBDIR/_ak_zchain
source $AK_LIBDIR/_ak_schain
source $AK_LIBDIR/_ak_sblock
+source $AK_LIBDIR/_ak_coin
#set -xe
AK_DB="$AK_WORKDIR/db"
-# 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_BALANCESDIR="$AK_WORKDIR/balances"
if [ ! -d $AK_BALANCESDIR ]
then
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"
+}