-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add proposer field to multisigTransaction. (#1695)
Add proposer field to indicate the owner or delegator address that proposed a transaction.
- Loading branch information
Showing
5 changed files
with
93 additions
and
35 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
safe_transaction_service/history/migrations/0075_multisigtransaction_proposer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 4.2.5 on 2023-10-05 09:23 | ||
|
||
from django.db import migrations | ||
|
||
import gnosis.eth.django.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("history", "0074_internaltx_history_internal_transfer_idx"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="multisigtransaction", | ||
name="proposer", | ||
field=gnosis.eth.django.models.EthereumAddressV2Field(null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters