Skip to content

Commit

Permalink
fix: Fix of the transaction saving job to handle transactions that do…
Browse files Browse the repository at this point in the history
… not contain an amount - MEED-8203 - Meeds-io/MIPs#118  (#85)

This change will fix of the transaction saving job to handle transactions that do not contain an amount.
  • Loading branch information
MayTekayaa committed Jan 22, 2025
1 parent 3d78d6b commit bd3829a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class EvmTransactionEntity implements Serializable {
@Column(name = "TRANSACTION_DATE", nullable = false)
private Long transactionDate;

@Column(name = "AMOUNT", nullable = false)
@Column(name = "AMOUNT")
private BigInteger amount;

@Column(name = "TOKEN_ID")
Expand Down

0 comments on commit bd3829a

Please sign in to comment.