diff options
author | Fabio Berger <me@fabioberger.com> | 2018-11-21 19:53:50 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-11-21 19:53:50 +0800 |
commit | baf69a60ebe14b525479d2824c62080589e0ad16 (patch) | |
tree | 59c4aefb45e581004a81f6ce13f86d5b0e865521 | |
parent | a90be44c9fe8dd64d4d5d182658deb7b740504f8 (diff) | |
download | dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar.gz dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar.bz2 dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar.lz dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar.xz dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.tar.zst dexon-sol-tools-baf69a60ebe14b525479d2824c62080589e0ad16.zip |
Fix additional comments
-rw-r--r-- | packages/migrations/src/migration.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/migrations/src/migration.ts b/packages/migrations/src/migration.ts index 570f18408..61ac56938 100644 --- a/packages/migrations/src/migration.ts +++ b/packages/migrations/src/migration.ts @@ -158,8 +158,8 @@ let _cachedContractAddresses: ContractAddresses; * Exactly like runMigrationsAsync but will only run the migrations the first * time it is called. Any subsequent calls will return the cached contract * addresses. - * @param provider Web3 provider instance. - * @param txDefaults Default transaction values to use when deploying contracts. + * @param provider Web3 provider instance. Your provider instance should connect to the testnet you want to deploy to. + * @param txDefaults Default transaction values to use when deploying contracts (e.g., specify the desired contract creator with the `from` parameter). * @returns The addresses of the contracts that were deployed. */ export async function runMigrationsOnceAsync( |