diff options
author | Fabio B <kandinsky454@protonmail.ch> | 2019-02-04 22:30:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-04 22:30:45 +0800 |
commit | 995a2ef8a016dcfb93c4cec9633c13b780b8d206 (patch) | |
tree | 32c94c2da927f0413e720bda3f075ce1e025d354 /packages | |
parent | 1d3fff32a29b4e958cd32acb016577683df95d3d (diff) | |
parent | 76a1ff7c40268a4c93511367373f44de2cc5d6a7 (diff) | |
download | dexon-0x-contracts-995a2ef8a016dcfb93c4cec9633c13b780b8d206.tar.gz dexon-0x-contracts-995a2ef8a016dcfb93c4cec9633c13b780b8d206.tar.zst dexon-0x-contracts-995a2ef8a016dcfb93c4cec9633c13b780b8d206.zip |
Merge pull request #1567 from jeremyschlatter/patch-1
fix typo
Diffstat (limited to 'packages')
-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); |