Skip to content

Commit 9ff7c6c

Browse files
Update safe-eth-py version to 7.20.0 (#2817)
* Update safe-eth-py version to 7.20.0 * Fix test with new 1.5.0 addresses for mainnet
1 parent a3f695f commit 9ff7c6c

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ pillow==12.1.1
2727
psycopg[binary,pool]==3.2.13
2828
redis[hiredis]==7.1.0
2929
requests==2.32.5
30-
safe-eth-py[django]==7.19.0
30+
safe-eth-py[django]==7.20.0
3131
web3==7.14.1

safe_transaction_service/history/tests/test_commands.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: FSL-1.1-MIT
12
import os.path
23
import tempfile
34
from io import StringIO
@@ -410,10 +411,10 @@ def test_setup_service_mainnet(self):
410411
last_proxy_factory.tx_block_number, last_proxy_factory_initial_block
411412
)
412413

413-
# At Nov 2023 we support 12 Master Copies, 3 L2 Master Copies and 6 Proxy Factories
414-
self.assertEqual(SafeMasterCopy.objects.count(), 12)
415-
self.assertEqual(SafeMasterCopy.objects.l2().count(), 3)
416-
self.assertEqual(ProxyFactory.objects.count(), 6)
414+
# At Mar 2025 we support 14 Master Copies, 4 L2 Master Copies and 7 Proxy Factories
415+
self.assertEqual(SafeMasterCopy.objects.count(), 14)
416+
self.assertEqual(SafeMasterCopy.objects.l2().count(), 4)
417+
self.assertEqual(ProxyFactory.objects.count(), 7)
417418

418419
def test_setup_service_mainnet_erc20_indexing_setup(self):
419420
# Test IndexingStatus ERC20 is not modified if higher than the oldest master copy

0 commit comments

Comments
 (0)