Skip to content

Commit

Permalink
Added condition for prod wallet as well
Browse files Browse the repository at this point in the history
  • Loading branch information
atul24112001 committed Oct 21, 2024
1 parent 39fb48b commit 1132b4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/controller/wallet/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ export async function createWallet(
.filter((word) => word.trim() !== "");

let targetText = textArray[0];
if (targetText === "@TrackpackDevBot") {
if (
targetText === "@TrackpackDevBot" ||
targetText === "@TrackpackVaultbot"
) {
targetText = textArray[1];
}
try {
Expand Down

0 comments on commit 1132b4e

Please sign in to comment.