From b8e2138d7aa1801f8c567ff26ba992903876e169 Mon Sep 17 00:00:00 2001 From: err508 Date: Wed, 22 Aug 2018 15:07:20 +0200 Subject: [PATCH] Fix auxiliaries after withdraw refactor. --- .../test/TokenNetworkInternalsTest.sol | 21 ------------------- raiden_contracts/tests/fixtures/channel.py | 1 - 2 files changed, 22 deletions(-) diff --git a/raiden_contracts/contracts/test/TokenNetworkInternalsTest.sol b/raiden_contracts/contracts/test/TokenNetworkInternalsTest.sol index bd287b860..db3cb7d29 100644 --- a/raiden_contracts/contracts/test/TokenNetworkInternalsTest.sol +++ b/raiden_contracts/contracts/test/TokenNetworkInternalsTest.sol @@ -218,27 +218,6 @@ contract TokenNetworkInternalsTest is TokenNetwork { ); } - function verifyWithdrawSignaturesPublic( - uint256 channel_identifier, - address participant, - address partner, - uint256 total_withdraw, - bytes participant_signature, - bytes partner_signature - ) - view - public - { - return verifyWithdrawSignatures( - channel_identifier, - participant, - partner, - total_withdraw, - participant_signature, - partner_signature - ); - } - function getMerkleRootAndUnlockedAmountPublic(bytes merkle_tree_leaves) view public diff --git a/raiden_contracts/tests/fixtures/channel.py b/raiden_contracts/tests/fixtures/channel.py index 74be504bd..0d0a7cb31 100644 --- a/raiden_contracts/tests/fixtures/channel.py +++ b/raiden_contracts/tests/fixtures/channel.py @@ -116,7 +116,6 @@ def get(channel_identifier, participant, withdraw_amount, partner, delegate=None channel_identifier, participant, withdraw_amount, - partner, signature_participant, signature_partner ).transact({'from': delegate})