Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MineFact committed Feb 2, 2024
1 parent ce16768 commit a0001c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/routes/teams/POST_Warp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ export async function initRoutes(app: Router, joi: any, network: Network) {
})

function convertStringToAddressType(input: string): AddressType {
console.log(input);
console.log(AddressType[input as keyof typeof AddressType].toString())
if (input in AddressType) {
return AddressType[input as keyof typeof AddressType];
}
Expand Down

0 comments on commit a0001c9

Please sign in to comment.