Skip to content

Commit

Permalink
Merge pull request #43 from mojaloop/fix/revert_optiona_expiration
Browse files Browse the repository at this point in the history
fix(public-messages-lib): Reverted change to make transfer expiration optional in the Kafka message
  • Loading branch information
pedrosousabarreto authored Jun 14, 2024
2 parents 35dde77 + faafec0 commit 9a01606
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/public-messages-lib/src/transfers-bc/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export type TransferPrepareRequestedEvtPayload = {
currencyCode: string;
ilpPacket: string;
condition: string;
expiration: number | null;
expiration: number;
extensionList: {
extension: {
key: string;
Expand Down Expand Up @@ -216,7 +216,7 @@ export type BulkTransferPrepareRequestedEvtPayload = {
payeeIdType: string;
transferType: string;
}[];
expiration: number | null;
expiration: number;
extensionList: {
extension: {
key: string;
Expand Down

0 comments on commit 9a01606

Please sign in to comment.