(currentSTO)
| 953 | } |
| 954 | |
| 955 | async function modfifyAddresses(currentSTO) { |
| 956 | let addresses = await addressesConfigUSDTieredSTO(await currentSTO.methods.fundRaiseTypes(gbl.constants.FUND_RAISE_TYPES.STABLE).call()); |
| 957 | let modifyAddressesAction = currentSTO.methods.modifyAddresses(addresses.wallet, addresses.reserveWallet, addresses.usdToken); |
| 958 | await common.sendTransaction(modifyAddressesAction); |
| 959 | } |
| 960 | |
| 961 | async function modfifyTiers(currentSTO) { |
| 962 | let tiers = tiersConfigUSDTieredSTO(await currentSTO.methods.fundRaiseTypes(gbl.constants.FUND_RAISE_TYPES.POLY).call()); |
no test coverage detected