summaryrefslogtreecommitdiff
path: root/generate_checksum.sh
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2024-07-30 18:31:06 +0200
committerGitHub <noreply@github.com>2024-07-30 18:31:06 +0200
commit4b4e434c250818c1de468e76317cb309be71b279 (patch)
tree312447814e611a9c8be1acf98833c5fc6f4735ab /generate_checksum.sh
parent373588247bcdb0ef2a16531fb8cd556743c5cd74 (diff)
make checksum less noisy (#23)
Diffstat (limited to 'generate_checksum.sh')
-rwxr-xr-xgenerate_checksum.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/generate_checksum.sh b/generate_checksum.sh
index 90a8f8c..c6f9524 100755
--- a/generate_checksum.sh
+++ b/generate_checksum.sh
@@ -16,8 +16,6 @@ do
const char * ${COIN}_wallet2_api_c_h_sha256 = "${COIN_wallet2_api_c_h_sha256}";
const char * ${COIN}_wallet2_api_c_cpp_sha256 = "${COIN_wallet2_api_c_cpp_sha256}";
const char * ${COIN}_wallet2_api_c_exp_sha256 = "${COIN_wallet2_api_c_exp_sha256}";
-const int ${COIN}_libwallet2_api_c_version = ${COIN_libwallet2_api_c_version};
-const char * ${COIN}_wallet2_api_c_date = "${COIN_libwallet2_api_c_date}";
#endif
EOF
cat > impls/monero.dart/lib/src/checksum_${coin}.dart << EOF
@@ -25,7 +23,6 @@ EOF
const String wallet2_api_c_h_sha256 = "${COIN_wallet2_api_c_h_sha256}";
const String wallet2_api_c_cpp_sha256 = "${COIN_wallet2_api_c_cpp_sha256}";
const String wallet2_api_c_exp_sha256 = "${COIN_wallet2_api_c_exp_sha256}";
-const int libwallet2_api_c_version = ${COIN_libwallet2_api_c_version};
-const String wallet2_api_c_date = "${COIN_libwallet2_api_c_date}";
EOF
-done \ No newline at end of file
+done
+