Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove failed space #872

Merged
merged 3 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
8 changes: 4 additions & 4 deletions gnosis/safe/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,10 +900,10 @@
), # 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
],
EthereumNetwork.STRATIS_MAINNET: [
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 106947, "1.4.1+L2"), # v1.4.1+L2
("0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", 106947, "1.4.1+L2"), # v1.4.1+L2
],
}

Expand Down Expand Up @@ -1465,9 +1465,9 @@
), # v1.3.0 default singleton address
],
EthereumNetwork.AURORIA_TESTNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 186758), # v1.4.1
],
EthereumNetwork.STRATIS_MAINNET: [
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 106940), # v1.4.1
("0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", 106940), # v1.4.1
],
}
Loading