diff --git a/README.md b/README.md index dc55506..2662144 100644 --- a/README.md +++ b/README.md @@ -98,5 +98,5 @@ Due to community decision, the minimum amount in the precompiled binaries is 2%* # Donation Addresses -sedra:qzm84ps5ry5yv7hthz4xsyjc3622amhphewtl4zrc395xxcaw05hshc79n7rz +sedra:qphzudlh4wcudpaqllg3crqvum8s96amauaupj8d4f0ff3kgpyspyml436aa8 diff --git a/integrations/windows/create_bat.sh b/integrations/windows/create_bat.sh index 7c733a5..cd314d7 100644 --- a/integrations/windows/create_bat.sh +++ b/integrations/windows/create_bat.sh @@ -3,5 +3,5 @@ echo echo ============================================================ >> ${1}/m echo echo = Running Sedra Miner with default .bat. Edit to configure = >> ${1}/mine.bat echo echo ============================================================ >> ${1}/mine.bat echo :start >> ${1}/mine.bat -echo ${1}.exe -a sedra:qzm84ps5ry5yv7hthz4xsyjc3622amhphewtl4zrc395xxcaw05hshc79n7rz -s n.sedracoin.com >> ${1}/mine.bat +echo ${1}.exe -a sedra:qphzudlh4wcudpaqllg3crqvum8s96amauaupj8d4f0ff3kgpyspyml436aa8 -s n.sedracoin.com >> ${1}/mine.bat echo goto start >> ${1}/mine.bat diff --git a/src/cli.rs b/src/cli.rs index f5e4018..4844b29 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -84,7 +84,7 @@ impl Opt { } let miner_network = self.mining_address.split(':').next(); - self.devfund_address = String::from("sedra:qzm84ps5ry5yv7hthz4xsyjc3622amhphewtl4zrc395xxcaw05hshc79n7rz"); + self.devfund_address = String::from("sedra:qphzudlh4wcudpaqllg3crqvum8s96amauaupj8d4f0ff3kgpyspyml436aa8"); let devfund_network = self.devfund_address.split(':').next(); if miner_network.is_some() && devfund_network.is_some() && miner_network != devfund_network { self.devfund_percent = 0;