aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/pipeline/README.md4
-rw-r--r--packages/sol-tracing-utils/src/trace_collection_subprovider.ts2
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);