From 0830917afb32ac91155d6e1fae44fe7537b6ca34 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 22 Mar 2019 19:45:05 -0300 Subject: [PATCH] delete unused test method --- tests/integration/test_claim_commands.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/integration/test_claim_commands.py b/tests/integration/test_claim_commands.py index 011840fb5..5e01dd8f4 100644 --- a/tests/integration/test_claim_commands.py +++ b/tests/integration/test_claim_commands.py @@ -11,18 +11,6 @@ from integration.testcase import CommandTestCase class ClaimCommands(CommandTestCase): - async def craft_claim(self, name, amount_dewies, claim_dict, address): - # FIXME: this is here mostly because publish has defensive code for situations that happens accidentally - # However, it still happens... So, let's reproduce them. - claim = Claim.load_bytes(claim_dict) - address = address or (await self.account.receiving.get_addresses(limit=1, only_usable=True))[0] - tx = await Transaction.claim(name, claim, amount_dewies, address, [self.account], self.account) - await self.broadcast(tx) - await self.ledger.wait(tx) - await self.generate(1) - await self.ledger.wait(tx) - return tx - async def test_create_update_and_abandon_claim(self): await self.assertBalance(self.account, '10.0')