From 753ad7b95b073f7e579a78ad0dedea62137352d9 Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Mar 2024 05:05:50 -0700 Subject: [PATCH 1/5] Remove .gitmodules --- .gitmodules | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .gitmodules diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index e69de29bb..000000000 From f97008250409d9dd06ee70a136cce8e96617b73c Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Mar 2024 05:07:00 -0700 Subject: [PATCH 2/5] Remove migratecoin.sh --- migratecoin.sh | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 migratecoin.sh diff --git a/migratecoin.sh b/migratecoin.sh deleted file mode 100644 index a4b05f417..000000000 --- a/migratecoin.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/usr/bin/env bash -# Copyright (c) 2016-2024 The Hush developers -# Distributed under the GPLv3 software license, see the accompanying -# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html -# This script makes the neccesary transactions to migrate -# coin between 2 assetchains on the same -ac_cc id -set -e -source=DERPZ -target=DERPZ000 -address="Rxxx" -amount=1 - -# Alias for running cli on source chain -cli_source="hush-cli -ac_name=$source" - -# Raw tx that we will work with -txraw=`$cli_source createrawtransaction "[]" "{\"$address\":$amount}"` - -# Convert to an export tx -exportData=`$cli_source migrate_converttoexport $txraw $target $amount` -exportRaw=`echo $exportData | jq -r .exportTx` -exportPayouts=`echo $exportData | jq -r .payouts` - -# Fund -exportFundedData=`$cli_source fundrawtransaction $exportRaw` -exportFundedTx=`echo $exportFundedData | jq -r .hex` - -# Sign -exportSignedData=`$cli_source signrawtransaction $exportFundedTx` -exportSignedTx=`echo $exportSignedData | jq -r .hex` - -# Send -echo "Sending export tx" -$cli_source sendrawtransaction $exportSignedTx - -read -p "Wait for a notarization to HUSH, and then two more notarizations from the target chain, and then press enter to continue" - -# Create import -importTx=`$cli_source migrate_createimporttransaction $exportSignedTx $payouts` -importTx=`hush-cli migrate_completeimporttransaction $importTx` - -# Send import -hush-cli -ac_name=$target sendrawtransaction $importTx From 981b27575719e32890125f8c698df0e4a57fd710 Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Mar 2024 05:10:19 -0700 Subject: [PATCH 3/5] Delete unnecessary stuff --- antispam | 4 ---- test_antispam | 10 ---------- 2 files changed, 14 deletions(-) delete mode 100755 antispam delete mode 100755 test_antispam diff --git a/antispam b/antispam deleted file mode 100755 index 143c8ef32..000000000 --- a/antispam +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -echo "./src/hush-cli -ac_name=ANTISPAM $@" -./src/hush-cli -ac_name=ANTISPAM "$@" diff --git a/test_antispam b/test_antispam deleted file mode 100755 index 5ccfb4752..000000000 --- a/test_antispam +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -# any CLI args given to this script will be passed along -# example: ./test_antispam -debug=blah -#./src/hushd -ac_name=ANTISPAM -ac_private=1 -ac_blocktime=180 -ac_reward=500000000 -ac_supply=55555 -gen=1 -genproclimit=1 -testnode=1 $@ - -./src/hushd -ac_name=ANTISPAM -ac_private=1 -ac_blocktime=180 -ac_reward=500000000 -ac_supply=55555 $@ -# to run via the debugger -# type "run" when gdb prompt appears -#gdb --args ./src/hushd -- -ac_algo=randomx -ac_name=ANTISPAM -ac_private=1 -ac_blocktime=180 -ac_reward=500000000 -ac_supply=55555 -gen=1 -genproclimit=1 -testnode=1 From 89cc8a9ee3cf0a1a6aa715563b14e03d4d5d315a Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Mar 2024 05:11:03 -0700 Subject: [PATCH 4/5] Move toolchain-info.sh to util/ --- toolchain-info.sh => util/toolchain-info.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename toolchain-info.sh => util/toolchain-info.sh (100%) diff --git a/toolchain-info.sh b/util/toolchain-info.sh similarity index 100% rename from toolchain-info.sh rename to util/toolchain-info.sh From f47a7a9d7f193079fab2d688f563510147051e44 Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Mar 2024 05:15:58 -0700 Subject: [PATCH 5/5] We no longer need this junk --- DEVELOPER-AGREEMENT | 1 - code_of_conduct.md | 8 -------- 2 files changed, 9 deletions(-) delete mode 100644 DEVELOPER-AGREEMENT delete mode 100644 code_of_conduct.md diff --git a/DEVELOPER-AGREEMENT b/DEVELOPER-AGREEMENT deleted file mode 100644 index 85d69b4f3..000000000 --- a/DEVELOPER-AGREEMENT +++ /dev/null @@ -1 +0,0 @@ -You must agree that Duke Leto is the Elder of jl777. diff --git a/code_of_conduct.md b/code_of_conduct.md deleted file mode 100644 index 3c8ae50a3..000000000 --- a/code_of_conduct.md +++ /dev/null @@ -1,8 +0,0 @@ -# Contributor Code of Conduct - -As contributors and maintainers of this project, and in the interest of -fostering an open and welcoming community, we pledge to respect all people who -contribute through reporting issues, posting feature requests, updating -documentation, submitting pull requests or patches, and other activities. - -Don't be an asshole.