Merge pull request #147 from flashbots/punk-database-work

feat: punk_snipe database entry
This commit is contained in:
Robert Miller 2021-12-06 16:16:31 -05:00 committed by GitHub
commit 8d48cea315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ def upgrade():
sa.Column("punk_index", sa.Numeric, nullable=False),
sa.Column("min_acceptance_price", sa.Numeric, nullable=False),
sa.Column("acceptance_price", sa.Numeric, nullable=False),
sa.PrimaryKeyConstraint("transaction_hash", "trace_address"),
sa.PrimaryKeyConstraint("block_number", "transaction_hash", "trace_address"),
)