Skip to content

Commit

Permalink
Revert "feat: add error_log into scalar_tap_receipts_invalid"
Browse files Browse the repository at this point in the history
This reverts commit 8ee7cf6.
  • Loading branch information
carlosvdr committed Sep 18, 2024
1 parent 6ae358e commit 1a3c372
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,6 @@ export async function up({ context }: Context): Promise<void> {
type: DataTypes.DECIMAL(20),
allowNull: false,
},
error_log:{
type: DataTypes.TEXT,
allowNull: false,
}
})
}

Expand Down
6 changes: 0 additions & 6 deletions packages/indexer-common/src/query-fees/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export interface ScalarTapReceiptsAttributes {
timestamp_ns: bigint
nonce: bigint
value: bigint
error_log?: string
}
export class ScalarTapReceipts
extends Model<ScalarTapReceiptsAttributes>
Expand Down Expand Up @@ -40,7 +39,6 @@ export class ScalarTapReceiptsInvalid
public nonce!: bigint
public value!: bigint
public signature!: Uint8Array
public error_log!: string

declare createdAt: CreationOptional<Date>
declare updatedAt: CreationOptional<Date>
Expand Down Expand Up @@ -659,10 +657,6 @@ export function defineQueryFeeModels(sequelize: Sequelize): QueryFeeModels {
type: DataTypes.BLOB,
allowNull: false,
},
error_log: {
type: DataTypes.TEXT,
allowNull: false,
},
},
{
underscored: true,
Expand Down

0 comments on commit 1a3c372

Please sign in to comment.