Skip to content

Commit

Permalink
Update test codes
Browse files Browse the repository at this point in the history
  • Loading branch information
danial303065 committed Aug 7, 2024
1 parent 8b5bfd1 commit de2fbb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/client-test/scripts/3-shop/createId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ async function main() {
let shopId = "";

if (Helper.NETWORK === "acc_mainnet") {
ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_MAINNET);
shopId = ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_MAINNET);
} else if (Helper.NETWORK === "acc_testnet") {
ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_TESTNET);
shopId = ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_TESTNET);
} else {
ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_TESTNET);
shopId = ContractUtils.getShopId(wallet.address, LoyaltyNetworkID.ACC_TESTNET);
}

console.log("처리결과입니다.");
Expand Down

0 comments on commit de2fbb7

Please sign in to comment.