|
|
|
@ -21,89 +21,115 @@ import binascii
|
|
|
|
|
|
|
|
|
|
import trezorlib.messages_pb2 as proto
|
|
|
|
|
import trezorlib.types_pb2 as proto_types
|
|
|
|
|
from trezorlib.tx_api import TxApiTestnet
|
|
|
|
|
from trezorlib.tx_api import TxApiInsight
|
|
|
|
|
from trezorlib.ckd_public import deserialize
|
|
|
|
|
from trezorlib.client import CallException
|
|
|
|
|
|
|
|
|
|
TxApiBitcoinCash = TxApiInsight(network='insight_bch', url='https://bch-bitcore2.trezor.io/api/')
|
|
|
|
|
|
|
|
|
|
class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
|
|
|
|
|
def test_send_bcc_change(self):
|
|
|
|
|
def test_send_bch_change(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiTestnet)
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/0"),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=123400000,
|
|
|
|
|
prev_hash=binascii.unhexlify('d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/0/0"),
|
|
|
|
|
# 1MH9KKcvdCTY44xVDC2k3fjBbX5Cz29N1q
|
|
|
|
|
amount=1995344,
|
|
|
|
|
prev_hash=binascii.unhexlify('bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/1/0"),
|
|
|
|
|
amount=1896050,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address='1LRspCZNFJcbuNKQkXgHMDucctFRQya5a3',
|
|
|
|
|
amount=73452,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_SignTx),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXFINISHED),
|
|
|
|
|
])
|
|
|
|
|
(signatures, serialized_tx) = self.client.sign_tx('Bcash', [inp1], [out1, out2])
|
|
|
|
|
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'0100000001781a716b1e15b41b07157933e5d777392a75bf87132650cb2e7d46fb8dc237bc000000006a473044022061aee4f17abe044d5df8c52c9ffd3b84e5a29743517e488b20ecf1ae0b3e4d3a02206bb84c55e407f3b684ff8d9bea0a3409cfd865795a19d10b3d3c31f12795c34a412103a020b36130021a0f037c1d1a02042e325c0cb666d6478c1afdcd9d913b9ef080ffffffff0272ee1c00000000001976a914b1401fce7e8bf123c88a0467e0ed11e3b9fbef5488acec1e0100000000001976a914d51eca49695cdf47e7f4b55507893e3ad53fe9d888ac00000000')
|
|
|
|
|
|
|
|
|
|
def test_send_bch_nochange(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/1/0"),
|
|
|
|
|
# 1HADRPJpgqBzThepERpVXNi6qRgiLQRNoE
|
|
|
|
|
amount=1896050,
|
|
|
|
|
prev_hash=binascii.unhexlify('502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
inp2 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/1"),
|
|
|
|
|
# mhSeXqbaojGkaezxgwobgMxGHzv79x7rhK
|
|
|
|
|
amount=43210000,
|
|
|
|
|
prev_hash=binascii.unhexlify('fe26bc077de27b72ffc5ce77a7e296c7c855b7deb3dec72a3f82c0c07c722bb0'),
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/0/1"),
|
|
|
|
|
# 1LRspCZNFJcbuNKQkXgHMDucctFRQya5a3
|
|
|
|
|
amount=73452,
|
|
|
|
|
prev_hash=binascii.unhexlify('502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address='mwue7mokpBRAsJtHqEMcRPanYBmsSmYKvY',
|
|
|
|
|
amount=100000000,
|
|
|
|
|
address='15pnEDZJo3ycPUamqP3tEDnEju1oW5fBCz',
|
|
|
|
|
amount=1934960,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/1/0"),
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
amount=23400000 + 43210000 - 5000
|
|
|
|
|
)
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_SignTx),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXFINISHED),
|
|
|
|
|
])
|
|
|
|
|
(signatures, serialized_tx) = self.client.sign_tx('Bcash Testnet', [inp1, inp2], [out1, out2])
|
|
|
|
|
(signatures, serialized_tx) = self.client.sign_tx('Bcash', [inp1, inp2], [out1])
|
|
|
|
|
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'0100000002243e15b53cc553d93ec4e27e16984adc3d885ef107c613a7577fea47f5dadcd2010000006b483045022100ebcce894cac5d1750f4b1abc7d8c0a5d25944c12a02942b0cc1c89c397acc09602207335077bd698cefc1694d5817abdb3b7aecfcd110ca07729d893577ada71d35441210364430c9122948e525e2f1c6d88f00f47679274f0810fd8c63754954f310995c1ffffffffb02b727cc0c0823f2ac7deb3deb755c8c796e2a777cec5ff727be27d07bc26fe010000006b4830450221008a140434b3f105686c6c4a704c9f2d09b2faf633b81b9ec2304b81f2fd617a9c0220497279b656c4034fd30c41c6f1d0e2ad2aa1b867575aa8f4c13218cb8c114140412103749e3f0a7b01f73427ed67c1cedbb4ecd2315ad6b7c2513355393b95d1ba6137ffffffff0200e1f505000000001976a914b3cc67f3349974d0f1b50e9bb5dfdf226f888fa088acc84ff803000000001976a914f80fb232a1e54b1fa732bc120cae72eabd7fcf6888ac00000000')
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'01000000022c06cf6f215c5cbfd7caa8e71b1b32630cabf1f816a4432815b037b277852e50000000006a47304402207a2a955f1cb3dc5f03f2c82934f55654882af4e852e5159639f6349e9386ec4002205fb8419dce4e648eae8f67bc4e369adfb130a87d2ea2d668f8144213b12bb457412103174c61e9c5362507e8061e28d2c0ce3d4df4e73f3535ae0b12f37809e0f92d2dffffffff2c06cf6f215c5cbfd7caa8e71b1b32630cabf1f816a4432815b037b277852e50010000006a473044022062151cf960b71823bbe68c7ed2c2a93ad1b9706a30255fddb02fcbe056d8c26102207bad1f0872bc5f0cfaf22e45c925c35d6c1466e303163b75cb7688038f1a5541412102595caf9aeb6ffdd0e82b150739a83297358b9a77564de382671056ad9e5b8c58ffffffff0170861d00000000001976a91434e9cec317896e818619ab7dc99d2305216ff4af88ac00000000')
|
|
|
|
|
|
|
|
|
|
def test_attack_amount(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiTestnet)
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/0"),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=123399999,
|
|
|
|
|
prev_hash=binascii.unhexlify('d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/1/0"),
|
|
|
|
|
# 1HADRPJpgqBzThepERpVXNi6qRgiLQRNoE
|
|
|
|
|
amount=1896050 - 1,
|
|
|
|
|
prev_hash=binascii.unhexlify('502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
inp2 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/1"),
|
|
|
|
|
# mhSeXqbaojGkaezxgwobgMxGHzv79x7rhK
|
|
|
|
|
amount=43210000,
|
|
|
|
|
prev_hash=binascii.unhexlify('fe26bc077de27b72ffc5ce77a7e296c7c855b7deb3dec72a3f82c0c07c722bb0'),
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/0'/0/1"),
|
|
|
|
|
# 1LRspCZNFJcbuNKQkXgHMDucctFRQya5a3
|
|
|
|
|
amount=73452,
|
|
|
|
|
prev_hash=binascii.unhexlify('502e8577b237b0152843a416f8f1ab0c63321b1be7a8cad7bf5c5c216fcf062c'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address='mwue7mokpBRAsJtHqEMcRPanYBmsSmYKvY',
|
|
|
|
|
amount=100000000,
|
|
|
|
|
address='15pnEDZJo3ycPUamqP3tEDnEju1oW5fBCz',
|
|
|
|
|
amount=1934960,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/1/0"),
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
amount=23399999 + 43210000 - 5000
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
global run_attack
|
|
|
|
|
run_attack = True
|
|
|
|
@ -124,7 +150,7 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
if not run_attack:
|
|
|
|
|
return msg
|
|
|
|
|
|
|
|
|
|
msg.inputs[0].amount = 123400000
|
|
|
|
|
msg.inputs[0].amount = 1896050
|
|
|
|
|
run_attack = False
|
|
|
|
|
return msg
|
|
|
|
|
|
|
|
|
@ -134,41 +160,32 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_SignTx),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.Failure(code=proto_types.Failure_ProcessError),
|
|
|
|
|
])
|
|
|
|
|
self.assertRaises(CallException, self.client.sign_tx, 'Bcash Testnet', [inp1, inp2], [out1, out2], debug_processor=attack_processor)
|
|
|
|
|
self.assertRaises(CallException, self.client.sign_tx, 'Bcash', [inp1, inp2], [out1], debug_processor=attack_processor)
|
|
|
|
|
|
|
|
|
|
def test_attack_change_input(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiTestnet)
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/0"),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=123400000,
|
|
|
|
|
prev_hash=binascii.unhexlify('d2dcdaf547ea7f57a713c607f15e883ddc4a98167ee2c43ed953c53cb5153e24'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
inp2 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/4'/0/1"),
|
|
|
|
|
# mhSeXqbaojGkaezxgwobgMxGHzv79x7rhK
|
|
|
|
|
amount=43210000,
|
|
|
|
|
prev_hash=binascii.unhexlify('fe26bc077de27b72ffc5ce77a7e296c7c855b7deb3dec72a3f82c0c07c722bb0'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/1000'/0/0"),
|
|
|
|
|
# 1MH9KKcvdCTY44xVDC2k3fjBbX5Cz29N1q
|
|
|
|
|
amount=1995344,
|
|
|
|
|
prev_hash=binascii.unhexlify('bc37c28dfb467d2ecb50261387bf752a3977d7e5337915071bb4151e6b711a78'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address='mwue7mokpBRAsJtHqEMcRPanYBmsSmYKvY',
|
|
|
|
|
amount=100000000,
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/1000'/1/0"),
|
|
|
|
|
amount=1896050,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/1'/1/0"),
|
|
|
|
|
address='1LRspCZNFJcbuNKQkXgHMDucctFRQya5a3',
|
|
|
|
|
amount=73452,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
amount=23400000 + 43210000 - 5000
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
global attack_ctr
|
|
|
|
@ -185,7 +202,7 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
return msg
|
|
|
|
|
|
|
|
|
|
attack_ctr += 1
|
|
|
|
|
if attack_ctr > 2:
|
|
|
|
|
if attack_ctr <= 1:
|
|
|
|
|
return msg
|
|
|
|
|
|
|
|
|
|
msg.inputs[0].address_n[2] = 1 + 0x80000000
|
|
|
|
@ -194,21 +211,20 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_SignTx),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.Failure(code=proto_types.Failure_ProcessError),
|
|
|
|
|
])
|
|
|
|
|
self.assertRaises(CallException, self.client.sign_tx, 'Bcash Testnet', [inp1, inp2], [out1, out2], debug_processor=attack_processor)
|
|
|
|
|
self.assertRaises(CallException, self.client.sign_tx, 'Bcash', [inp1], [out1, out2], debug_processor=attack_processor)
|
|
|
|
|
|
|
|
|
|
def test_send_bcc_multisig_wrongchange(self):
|
|
|
|
|
def test_send_bch_multisig_wrongchange(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiTestnet)
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
xpubs = [];
|
|
|
|
|
for n in map(lambda index : self.client.get_public_node(self.client.expand_path("44'/1'/"+str(index)+"'")), range(1,4)):
|
|
|
|
|
for n in map(lambda index : self.client.get_public_node(self.client.expand_path("44'/145'/"+str(index)+"'")), range(1,4)):
|
|
|
|
|
xpubs.append(n.xpub)
|
|
|
|
|
|
|
|
|
|
def getmultisig(chain, nr, signatures=[b'',b'',b''], xpubs=xpubs):
|
|
|
|
@ -221,53 +237,47 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
depth=1,fingerprint=0,child_num=0,
|
|
|
|
|
chain_code=binascii.unhexlify('0000000000000000000000000000000000000000000000000000000000000000'),
|
|
|
|
|
public_key=binascii.unhexlify('0378d430274f8c5ec1321338151e9f27f4c676a008bdf8638d07c0b6be9ab35c71'))
|
|
|
|
|
sig = binascii.unhexlify(b'304402207274b5a4d15e75f3df7319a375557b0efba9b27bc63f9f183a17da95a6125c94022000efac57629f1522e2d3958430e2ef073b0706cfac06cce492651b79858f09ae')
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/1'/0/0"),
|
|
|
|
|
multisig=getmultisig(0,0),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=50000000,
|
|
|
|
|
prev_hash=binascii.unhexlify('5473e99f750a44de54c6bdaf2de393768e386b34545d2497f9cc6f28d2440289'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/1'/1/0"),
|
|
|
|
|
multisig=getmultisig(1,0,[b'',sig, b'']),
|
|
|
|
|
# 3CPtPpL5mGAPdxUeUDfm2RNdWoSN9dKpXE
|
|
|
|
|
amount=24000,
|
|
|
|
|
prev_hash=binascii.unhexlify('f68caf10df12d5b07a34601d88fa6856c6edcbf4d05ebef3486510ae1c293d5f'),
|
|
|
|
|
prev_index=1,
|
|
|
|
|
script_type=proto_types.SPENDMULTISIG,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address='2NFpzHCzpzhqhfFJxqpdNSj7zyAZARGa8BE',
|
|
|
|
|
amount=10000000,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/1'/1/0"),
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/1'/1/1"),
|
|
|
|
|
multisig=proto_types.MultisigRedeemScriptType(
|
|
|
|
|
pubkeys=[proto_types.HDNodePathType(node=deserialize(xpubs[0]), address_n=[1,0]),
|
|
|
|
|
pubkeys=[proto_types.HDNodePathType(node=deserialize(xpubs[0]), address_n=[1,1]),
|
|
|
|
|
proto_types.HDNodePathType(node=correcthorse, address_n=[]),
|
|
|
|
|
proto_types.HDNodePathType(node=correcthorse, address_n=[])],
|
|
|
|
|
signatures=[b'',b'',b''],
|
|
|
|
|
m=2,
|
|
|
|
|
),
|
|
|
|
|
script_type=proto_types.PAYTOMULTISIG,
|
|
|
|
|
amount=50000000 - 10000000 - 5000,
|
|
|
|
|
amount=23000
|
|
|
|
|
)
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
|
|
|
|
|
proto.ButtonRequest(code=proto_types.ButtonRequest_SignTx),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXINPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=0)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXFINISHED),
|
|
|
|
|
])
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash Testnet', [inp1], [out1, out2])
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'3044022053acc56aea1d26d84c9a24dae82f2d47f0383ceec57425264f8246d4d6fa49e80220100e65ea7a62df317adf4fb61a24da6d6236a5c688fb309afd11c4262f9b4e43')
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash', [inp1], [out1])
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'3044022052ccf022b3684ecce9f961ce8828387b97267c86bedf0ce16a24bf014e62e42c022035d315ddbeeef7ab3456bd09aed8b625ea58852216b60e4b84ba9f85827d305c')
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'01000000015f3d291cae106548f3be5ed0f4cbedc65668fa881d60347ab0d512df10af8cf601000000fc00473044022052ccf022b3684ecce9f961ce8828387b97267c86bedf0ce16a24bf014e62e42c022035d315ddbeeef7ab3456bd09aed8b625ea58852216b60e4b84ba9f85827d305c4147304402207274b5a4d15e75f3df7319a375557b0efba9b27bc63f9f183a17da95a6125c94022000efac57629f1522e2d3958430e2ef073b0706cfac06cce492651b79858f09ae414c69522103d62b2af2272bbd67cbe30eeaf4226c7f2d57d2a0ed1aab5ab736fb40bb2f5ffe21036d5e0d7ca3589465711eec91436249d7234d3a994c219024fc75cec98fc02ae221024f58378a69b68e89301a6ff882116e0fa35446ec9bfd86532eeb05941ec1f8c853aeffffffff01d85900000000000017a9140bb11de6558871f49fc241341992ece9986f7c5c8700000000')
|
|
|
|
|
|
|
|
|
|
def test_send_bcc_multisig_change(self):
|
|
|
|
|
def test_send_bch_multisig_change(self):
|
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
self.client.set_tx_api(TxApiTestnet)
|
|
|
|
|
self.client.set_tx_api(TxApiBitcoinCash)
|
|
|
|
|
xpubs = [];
|
|
|
|
|
for n in map(lambda index : self.client.get_public_node(self.client.expand_path("44'/1'/"+str(index)+"'")), range(1,4)):
|
|
|
|
|
for n in map(lambda index : self.client.get_public_node(self.client.expand_path("44'/145'/"+str(index)+"'")), range(1,4)):
|
|
|
|
|
xpubs.append(n.xpub)
|
|
|
|
|
|
|
|
|
|
def getmultisig(chain, nr, signatures=[b'',b'',b''], xpubs=xpubs):
|
|
|
|
@ -277,24 +287,24 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
m=2,
|
|
|
|
|
)
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/1'/0/0"),
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/3'/0/0"),
|
|
|
|
|
multisig=getmultisig(0,0),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=50000000,
|
|
|
|
|
prev_hash=binascii.unhexlify('5473e99f750a44de54c6bdaf2de393768e386b34545d2497f9cc6f28d2440289'),
|
|
|
|
|
# 33Ju286QvonBz5N1V754ZekQv4GLJqcc5R
|
|
|
|
|
amount=48490,
|
|
|
|
|
prev_hash=binascii.unhexlify('8b6db9b8ba24235d86b053ea2ccb484fc32b96f89c3c39f98d86f90db16076a0'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDMULTISIG,
|
|
|
|
|
)
|
|
|
|
|
out1 = proto_types.TxOutputType(
|
|
|
|
|
address='2NFpzHCzpzhqhfFJxqpdNSj7zyAZARGa8BE',
|
|
|
|
|
amount=10000000,
|
|
|
|
|
address='113Q5hHQNQ3bc1RpPX6UNw4GAXstyeA3Dk',
|
|
|
|
|
amount=24000,
|
|
|
|
|
script_type=proto_types.PAYTOADDRESS,
|
|
|
|
|
)
|
|
|
|
|
out2 = proto_types.TxOutputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/1'/1/0"),
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/3'/1/0"),
|
|
|
|
|
multisig=getmultisig(1,0),
|
|
|
|
|
script_type=proto_types.PAYTOMULTISIG,
|
|
|
|
|
amount=50000000 - 10000000 - 5000,
|
|
|
|
|
amount=24000
|
|
|
|
|
)
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
@ -308,22 +318,20 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXFINISHED),
|
|
|
|
|
])
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash Testnet', [inp1], [out1, out2])
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash', [inp1], [out1, out2])
|
|
|
|
|
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'3045022100c5d9dac04f7843ab4832f4e743ffd2f9c1a839f9c350c89613536ca04994a511022025c33450e54230e0e9dc26cdeb9de928049f03e9e74f7e3385b76af1af819b34')
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'3045022100bcb1a7134a13025a06052546ee1c6ac3640a0abd2d130190ed13ed7fcb43e9cd02207c381478e2ee123c850425bfbf6d3c691230eb37e333832cb32a1ed3f2cd9e85')
|
|
|
|
|
|
|
|
|
|
signatures1.append(b'')
|
|
|
|
|
signatures1.append(b'')
|
|
|
|
|
inp1b = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/1'/3'/0/0"),
|
|
|
|
|
multisig=getmultisig(0,0,signatures1),
|
|
|
|
|
# moUJnmge8SRXuediK7bW6t4YfrPqbE6hD7
|
|
|
|
|
amount=50000000,
|
|
|
|
|
prev_hash=binascii.unhexlify('5473e99f750a44de54c6bdaf2de393768e386b34545d2497f9cc6f28d2440289'),
|
|
|
|
|
inp1 = proto_types.TxInputType(
|
|
|
|
|
address_n=self.client.expand_path("44'/145'/1'/0/0"),
|
|
|
|
|
multisig=getmultisig(0,0,[b'', b'', signatures1[0]]),
|
|
|
|
|
# 33Ju286QvonBz5N1V754ZekQv4GLJqcc5R
|
|
|
|
|
amount=48490,
|
|
|
|
|
prev_hash=binascii.unhexlify('8b6db9b8ba24235d86b053ea2ccb484fc32b96f89c3c39f98d86f90db16076a0'),
|
|
|
|
|
prev_index=0,
|
|
|
|
|
script_type=proto_types.SPENDMULTISIG,
|
|
|
|
|
)
|
|
|
|
|
out2.address_n[2] = 3 + 0x80000000
|
|
|
|
|
out2.address_n[2] = 1 + 0x80000000
|
|
|
|
|
|
|
|
|
|
with self.client:
|
|
|
|
|
self.client.set_expected_responses([
|
|
|
|
@ -337,7 +345,9 @@ class TestMsgSigntxSegwit(common.TrezorTest):
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXOUTPUT, details=proto_types.TxRequestDetailsType(request_index=1)),
|
|
|
|
|
proto.TxRequest(request_type=proto_types.TXFINISHED),
|
|
|
|
|
])
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash Testnet', [inp1b], [out1, out2])
|
|
|
|
|
(signatures1, serialized_tx) = self.client.sign_tx('Bcash', [inp1], [out1, out2])
|
|
|
|
|
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'3045022100f1153636371ba1f84389460e1265a8fa296569bc18e117c31f4e8f0fc0650c01022022932cc84766ff0c0f65ed9633ad311ae90d4c8fe71f5e1890b1e8f74dd516fa')
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'0100000001a07660b10df9868df9393c9cf8962bc34f48cb2cea53b0865d2324bab8b96d8b00000000fdfe0000483045022100f1153636371ba1f84389460e1265a8fa296569bc18e117c31f4e8f0fc0650c01022022932cc84766ff0c0f65ed9633ad311ae90d4c8fe71f5e1890b1e8f74dd516fa41483045022100bcb1a7134a13025a06052546ee1c6ac3640a0abd2d130190ed13ed7fcb43e9cd02207c381478e2ee123c850425bfbf6d3c691230eb37e333832cb32a1ed3f2cd9e85414c69522102fcf63419c319ce1a42d69120a3599d6da8c5dd4caf2888220eccde5a1ff7c5d021036d7d5ef79370b7fabe2c058698a20219e97fc70868e65ecdd6b37cc18e8a88bd2103505dc649dab8cd1655a4c0daf0ec5f955881c9d7011478ea881fac11cab1e49953aeffffffff02c05d0000000000001976a91400741952f6a6eab5394f366db5cc5a54b0c2429f88acc05d00000000000017a914756c06d7e77de3950a6124f026d8e1a2464b3ecf8700000000')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.assertEqual(binascii.hexlify(signatures1[0]), b'30450221009907e496658ae839a683b12d740669daba56d68039ba618d51ae8af359d2e67f022071d8b903dbdf8d1a9618cd3e4b056601ec5e67b070b22e19d5e6aad9092f6fae')
|
|
|
|
|
self.assertEqual(binascii.hexlify(serialized_tx), b'0100000001890244d2286fccf997245d54346b388e7693e32dafbdc654de440a759fe9735400000000fdfe0000483045022100c5d9dac04f7843ab4832f4e743ffd2f9c1a839f9c350c89613536ca04994a511022025c33450e54230e0e9dc26cdeb9de928049f03e9e74f7e3385b76af1af819b34414830450221009907e496658ae839a683b12d740669daba56d68039ba618d51ae8af359d2e67f022071d8b903dbdf8d1a9618cd3e4b056601ec5e67b070b22e19d5e6aad9092f6fae414c69522103bae960983f83e28fcb8f0e5f3dc1f1297b9f9636612fd0835b768e1b7275fb9d2102fda9c8db4c874fd898256a4524310fa4f66c7dccbb3dca2ded179dcae233c6c121026b27cc8adf7982277d923a5039d90236af0f8e3b27ddfcbc6da4fcc4a88b6b4753aeffffffff02809698000000000017a914f7b5778714965b2b66cbc373b739b4ab5749057d87784662020000000017a9147708c4321dd802870439fa7563716bbccabb5ba68700000000')
|
|
|
|
|