From 021404587bfce050a1c0c483b4eba6fe6da5e596 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 19 Jul 2024 15:09:49 +0200 Subject: [PATCH] Fix typo on EthereumAddressV2Field --- gnosis/eth/django/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnosis/eth/django/models.py b/gnosis/eth/django/models.py index 928d20d02..5dff66d53 100644 --- a/gnosis/eth/django/models.py +++ b/gnosis/eth/django/models.py @@ -261,11 +261,11 @@ class EthereumAddressField(models.CharField): class EthereumAddressV2Field(EthereumAddressBinaryField): system_check_removed_details = { "msg": ( - "EthereumAddressField has been removed except for support in " + "EthereumAddressV2Field has been removed except for support in " "historical migrations." ), - "hint": "Use EthereumAddressFastBinaryField instead.", - "id": "fields.E4815", # pick a unique ID for your field. + "hint": "Use EthereumAddressBinaryField instead.", + "id": "fields.E4816", # pick a unique ID for your field. }