diff options
author | Jeremy Schlatter <jeremy.schlatter@gmail.com> | 2019-02-01 04:35:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-01 04:35:26 +0800 |
commit | 76a1ff7c40268a4c93511367373f44de2cc5d6a7 (patch) | |
tree | 109d832916f2909203897df3dac1d885180c3dfb /packages/sol-tracing-utils | |
parent | da357f7599cb69edfd3d81a59146009d255c9465 (diff) | |
download | dexon-0x-contracts-76a1ff7c40268a4c93511367373f44de2cc5d6a7.tar.gz dexon-0x-contracts-76a1ff7c40268a4c93511367373f44de2cc5d6a7.tar.zst dexon-0x-contracts-76a1ff7c40268a4c93511367373f44de2cc5d6a7.zip |
fix typo
Diffstat (limited to 'packages/sol-tracing-utils')
-rw-r--r-- | packages/sol-tracing-utils/src/trace_collection_subprovider.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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); |