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.
96 lines
3.4 KiB
Python
Executable File
96 lines
3.4 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# Copyright (c) 2018-2020 The Hush developers
|
|
# Copyright (c) 2018 SuperNET developers
|
|
# Released under the GPLv3
|
|
|
|
# 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.authproxy import JSONRPCException
|
|
from test_framework.util import assert_equal, assert_greater_than, \
|
|
initialize_chain_clean, initialize_chain, start_nodes, start_node, connect_nodes_bi, \
|
|
stop_nodes, sync_blocks, sync_mempools, wait_bitcoinds, rpc_port, assert_raises
|
|
|
|
import time
|
|
from decimal import Decimal
|
|
from random import choice
|
|
from string import ascii_uppercase
|
|
|
|
def assert_success(result):
|
|
assert_equal(result['result'], 'success')
|
|
|
|
def assert_error(result):
|
|
assert_equal(result['result'], 'error')
|
|
|
|
def generate_random_string(length):
|
|
random_string = ''.join(choice(ascii_uppercase) for i in range(length))
|
|
return random_string
|
|
|
|
|
|
class AssetChainPrivateTest (BitcoinTestFramework):
|
|
|
|
def setup_chain(self):
|
|
print("Initializing ac_private test directory "+self.options.tmpdir)
|
|
self.num_nodes = 1
|
|
initialize_chain_clean(self.options.tmpdir, self.num_nodes)
|
|
|
|
def setup_network(self, split = False):
|
|
print("Setting up network...")
|
|
# These nodes simulate z2z asset chain parameters
|
|
self.nodes = start_nodes(self.num_nodes, self.options.tmpdir,
|
|
extra_args=[[
|
|
# always give -ac_name as first extra_arg and port as third
|
|
'-ac_name=REGTEST',
|
|
'-conf='+self.options.tmpdir+'/node0/REGTEST.conf',
|
|
'-port=64367',
|
|
'-rpcport=64368',
|
|
'-regtest',
|
|
'-addressindex=1',
|
|
'-spentindex=1',
|
|
'-ac_supply=0',
|
|
'-ac_reward=25600000000',
|
|
'-ac_private=1',
|
|
'-whitelist=127.0.0.1',
|
|
'-debug',
|
|
'--daemon',
|
|
'-rpcuser=rt',
|
|
'-rpcpassword=rt'
|
|
]]
|
|
)
|
|
self.is_network_split = split
|
|
self.rpc = self.nodes[0]
|
|
self.sync_all()
|
|
print("Done setting up network")
|
|
|
|
def send_and_mine(self, xtn, rpc_connection):
|
|
txid = rpc_connection.sendrawtransaction(xtn)
|
|
assert txid, 'got txid'
|
|
# we need the tx above to be confirmed in the next block
|
|
rpc_connection.generate(1)
|
|
return txid
|
|
|
|
def run_test (self):
|
|
print("Mining blocks...")
|
|
rpc = self.nodes[0]
|
|
# utxos from block 1 become mature in block 101
|
|
rpc.generate(101)
|
|
self.sync_all()
|
|
rpc.getinfo()
|
|
rpc.getwalletinfo()
|
|
|
|
taddr = rpc.getnewaddress()
|
|
print "Sending to " + taddr
|
|
# sending to arbitrary non-notary transparent address is not allowed
|
|
assert_raises(JSONRPCException, rpc.sendtoaddress, taddr,1)
|
|
|
|
# this is a current notary address
|
|
# TODO: keep in sync when notaries change
|
|
#dev1_jl777 = "RNJmgYaFF5DbnrNUX6pMYz9rcnDKC2tuAc"
|
|
# taddr vout is only allowed if it is a notary address
|
|
#txid = rpc.sendtoaddress(dev1_jl777, 7)
|
|
#assert txid, 'got txid'
|
|
|
|
if __name__ == '__main__':
|
|
AssetChainPrivateTest ().main()
|