Browse Source

minor QA changes

pull/396/head
jahway603 2 months ago
parent
commit
4a3c335050
  1. 2
      contrib/dragonx_scanner
  2. 4
      doc/developer-notes.md
  3. 1
      qa/hush/create_benchmark_archive.py
  4. 1
      qa/rpc-tests/test_framework/authproxy.py
  5. 1
      qa/rpc-tests/test_framework/bignum.py
  6. 1
      qa/rpc-tests/test_framework/blockstore.py
  7. 1
      qa/rpc-tests/test_framework/blocktools.py
  8. 1
      qa/rpc-tests/test_framework/equihash.py
  9. 1
      qa/rpc-tests/test_framework/mininode.py
  10. 1
      qa/rpc-tests/test_framework/script.py
  11. 1
      qa/rpc-tests/test_framework/socks5.py
  12. 2
      src/chainparams.cpp
  13. 1
      src/crypto/common.h

2
contrib/dragonx_scanner

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

4
doc/developer-notes.md

@ -18,8 +18,8 @@ git checkout dev
Then install needed dependencies. This is different on each OS as well as Then install needed dependencies. This is different on each OS as well as
older or newer systems. See https://git.hush.is/hush/hush3/src/branch/dev/INSTALL.md for older or newer systems. See https://git.hush.is/hush/hush3/src/branch/dev/INSTALL.md for
details on installing dependencies. If you are using a recent-ish Linux distro, this details on installing dependencies. If you are using a recent-ish Ubuntu or Debian Linux
is probably what you need: distro, this is probably what you need:
``` ```
# install build dependencies # install build dependencies

1
qa/hush/create_benchmark_archive.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/authproxy.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/bignum.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/blockstore.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/blocktools.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/equihash.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/mininode.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/script.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html # file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html

1
qa/rpc-tests/test_framework/socks5.py

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# Copyright (c) 2016-2024 The Hush developers # Copyright (c) 2016-2024 The Hush developers
# Copyright (c) 2015 The Bitcoin Core developers # Copyright (c) 2015 The Bitcoin Core developers
# Distributed under the GPLv3 software license, see the accompanying # Distributed under the GPLv3 software license, see the accompanying

2
src/chainparams.cpp

@ -3138,7 +3138,7 @@ void *chainparams_commandline() {
(1130000, uint256S("0x000082de552f3b0dbd1a805e08db29f9f60fe020ee88944b0266e55cda2f7e78")) (1130000, uint256S("0x000082de552f3b0dbd1a805e08db29f9f60fe020ee88944b0266e55cda2f7e78"))
(1131000, uint256S("0x0000061cc63ed366899e9d4d7c748ac75ae3ef9a32ef60e92cf7c0c306ee9711")) (1131000, uint256S("0x0000061cc63ed366899e9d4d7c748ac75ae3ef9a32ef60e92cf7c0c306ee9711"))
(1132000, uint256S("0x00008bd55bfae2a954b70b04f570e03b9148d639358a697b5d2e948fc6345918")) (1132000, uint256S("0x00008bd55bfae2a954b70b04f570e03b9148d639358a697b5d2e948fc6345918"))
(1133000, uint256S("0x00003a59655529f46df2b436019db7b1d7b9757f4416699ab5d895cd68f9be64")) (1133000, uint256S("0x00003a59655529f46df2b436019db7b1d7b9757f4416699ab5d895cd68f9be64"))
(1134000, uint256S("0x00004f6097651296f52e7d69a51e7b82ce12599109c5abc201d77cf9af9d6e88")) (1134000, uint256S("0x00004f6097651296f52e7d69a51e7b82ce12599109c5abc201d77cf9af9d6e88"))
(1135000, uint256S("0x000049450fcc6b737c938099e17bc0c54cd18b385112cd7689477a9cc8a27e99")) (1135000, uint256S("0x000049450fcc6b737c938099e17bc0c54cd18b385112cd7689477a9cc8a27e99"))
(1136000, uint256S("0x00005ea94a0ee3a23b8224a87dd107e13ea0e86a59c3d2de4fb9fd3a94c0fe27")) (1136000, uint256S("0x00005ea94a0ee3a23b8224a87dd107e13ea0e86a59c3d2de4fb9fd3a94c0fe27"))

1
src/crypto/common.h

@ -1,4 +1,3 @@
// Copyright (c) 2016-2024 The Hush developers
// Copyright (c) 2014 The Bitcoin Core developers // Copyright (c) 2014 The Bitcoin Core developers
// Copyright (c) 2016-2024 The Hush developers // Copyright (c) 2016-2024 The Hush developers
// Released under the GPLv3 // Released under the GPLv3

Loading…
Cancel
Save