Skip to content

Commit

Permalink
remove obsolete counter
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed Oct 9, 2023
1 parent 2632b59 commit c8dd9b3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/api/test_noderpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,9 @@ async def test_find_states(self):
self.mock_response(captured2)
from neo3.contracts.contract import CONTRACT_HASHES

count = 0
results = []
async for k, v in self.client.find_states(CONTRACT_HASHES.MANAGEMENT, b"\x0c"):
results.append((k, v))
count += 1
self.assertEqual(3, len(results))
self.assertEqual(key1, results[0][0])
self.assertEqual(value1, results[0][1])
Expand Down

0 comments on commit c8dd9b3

Please sign in to comment.