Skip to content

Commit

Permalink
Merge pull request #426 from zikriya/develop
Browse files Browse the repository at this point in the history
isStargate turned into false as default in model
  • Loading branch information
zikriya authored Jul 31, 2024
2 parents cf27412 + faeb01c commit a8a51d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/swapAndWithdrawTransactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ var schema = mongoose.Schema(
},
distributedFee: { type: String, default: "" },
referralCode: { type: String, default: "" },
isStargate: { type: Boolean, default: true },
isStargate: { type: Boolean, default: false },
},
{ collection: "swapAndWithdrawTransactions" }
);
Expand Down

0 comments on commit a8a51d2

Please sign in to comment.