Any projects which want to use Hush code from now on will need to be licensed as GPLv3 or we will send the lawyers: https://www.softwarefreedom.org/ Notably, Komodo (KMD) is licensed as GPLv2 and is no longer compatible to receive code changes, without causing legal issues. MIT projects, such as Zcash, also cannot pull in changes from the Hush Full Node without permission from The Hush Developers, which may in some circumstances grant an MIT license on a case-by-case basis.
36 lines
1.3 KiB
Python
Executable File
36 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# Copyright (c) 2019-2020 The Hush developers
|
|
# Copyright (c) 2018 The Zcash developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import start_nodes, wait_and_assert_operationid_status
|
|
|
|
class RegtestSignrawtransactionTest (BitcoinTestFramework):
|
|
|
|
def setup_nodes(self):
|
|
return start_nodes(4, self.options.tmpdir, [[
|
|
"-nuparams=5ba81b19:200", # Overwinter
|
|
"-nuparams=76b809bb:204", # Sapling
|
|
]] * 4)
|
|
|
|
def run_test(self):
|
|
self.nodes[0].generate(1)
|
|
self.sync_all()
|
|
taddr = self.nodes[1].getnewaddress()
|
|
zaddr1 = self.nodes[1].z_getnewaddress('sapling')
|
|
|
|
self.nodes[0].sendtoaddress(taddr, 2.0)
|
|
self.nodes[0].generate(1)
|
|
self.sync_all()
|
|
|
|
# Create and sign Overwinter transaction.
|
|
# If the incorrect consensus branch id is selected, there will be a signing error.
|
|
opid = self.nodes[1].z_sendmany(taddr,
|
|
[{'address': zaddr1, 'amount': 1}])
|
|
wait_and_assert_operationid_status(self.nodes[1], opid)
|
|
|
|
if __name__ == '__main__':
|
|
RegtestSignrawtransactionTest().main()
|