diff options
author | Fabio Berger <me@fabioberger.com> | 2019-02-05 03:33:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2019-02-05 03:33:08 +0800 |
commit | a1bf5e8261ef24e3123832201f76ec6d12f4455b (patch) | |
tree | 75b050dedf83caa3219bce66db87dbbeff323e1f /packages | |
parent | 52f22aad818b5b5e19d93cf07344655f0f1ca45f (diff) | |
parent | 50cad8d26006cf11201add42aeb8bd97e38c4ec3 (diff) | |
download | dexon-0x-contracts-a1bf5e8261ef24e3123832201f76ec6d12f4455b.tar.gz dexon-0x-contracts-a1bf5e8261ef24e3123832201f76ec6d12f4455b.tar.zst dexon-0x-contracts-a1bf5e8261ef24e3123832201f76ec6d12f4455b.zip |
Merge branch 'development' into fix/preSignedSignatureBug
* development:
Nit fixes to pipeline README
fix typo
Diffstat (limited to 'packages')
-rw-r--r-- | packages/pipeline/README.md | 4 | ||||
-rw-r--r-- | packages/sol-tracing-utils/src/trace_collection_subprovider.ts | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/packages/pipeline/README.md b/packages/pipeline/README.md index 4fc8e0ff9..23113fd9b 100644 --- a/packages/pipeline/README.md +++ b/packages/pipeline/README.md @@ -34,8 +34,10 @@ yarn lint ### Migrations -Create a new migration: `yarn migrate:create --name MigrationNameInCamelCase` +Create a new migration: `yarn migrate:create --name MigrationNameInCamelCase`. + Run migrations: `yarn migrate:run` + Revert the most recent migration (CAUTION: may result in data loss!): `yarn migrate:revert` ## Testing diff --git a/packages/sol-tracing-utils/src/trace_collection_subprovider.ts b/packages/sol-tracing-utils/src/trace_collection_subprovider.ts index 5118921fa..8279bda54 100644 --- a/packages/sol-tracing-utils/src/trace_collection_subprovider.ts +++ b/packages/sol-tracing-utils/src/trace_collection_subprovider.ts @@ -180,7 +180,7 @@ export abstract class TraceCollectionSubprovider extends Subprovider { cb(); } private async _recordCallOrGasEstimateTraceAsync(callData: Partial<CallDataRPC>): Promise<void> { - // We don't want other transactions to be exeucted during snashotting period, that's why we lock the + // We don't want other transactions to be executed during snashotting period, that's why we lock the // transaction execution for all transactions except our fake ones. await this._lock.acquire(); const blockchainLifecycle = new BlockchainLifecycle(this._web3Wrapper); |