Skip to content

Commit

Permalink
Remove failed space
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Apr 1, 2024
1 parent 6b984cd commit 4fbc24e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def upsert_contract_address_master_copy(
if match:
new_entry = (
f' EthereumNetwork.{chain_enum_name}: [\n ("{address}", {block_number}, '
+ f'"{version}"), # v{version} \n ],\n'
+ f'"{version}"), # v{version}\n ],\n'
)
updated_content = (
content[: match.start()]
Expand Down Expand Up @@ -289,7 +289,6 @@ def upsert_contract_address_proxy_factory(
file = repo.get_contents(file_path, ref=branch_name)
content = file.decoded_content.decode("utf-8")
version = version.replace("+L2", "")

print(
f"Updating Proxy Factory address chain {chain_enum_name} address '{address}' and block_number {block_number}"
)
Expand Down Expand Up @@ -344,7 +343,7 @@ def upsert_contract_address_proxy_factory(
if match:
new_entry = (
f' EthereumNetwork.{chain_enum_name}: [\n ("{address}", {block_number}'
+ f"), # v{version} \n ],\n"
+ f"), # v{version}\n ],\n"
)
updated_content = (
content[: match.start()]
Expand Down
4 changes: 2 additions & 2 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@
), # safe singleton address
],
EthereumNetwork.AURORIA_TESTNET: [
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 186765, "1.4.1+L2"), # v1.4.1+L2
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 186765, "1.4.1+L2"), # v1.4.1+L2
],
}

Expand Down Expand Up @@ -1462,6 +1462,6 @@
), # v1.3.0 default singleton address
],
EthereumNetwork.AURORIA_TESTNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
],
}

0 comments on commit 4fbc24e

Please sign in to comment.