Update packages/sol-tracing-utils/src/trace_collection_subprovider.ts

Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com>
This commit is contained in:
Fabio B
2019-01-17 15:06:42 +01:00
committed by GitHub
parent 8528660f50
commit 92ec4f5772

View File

@@ -144,7 +144,7 @@ export abstract class TraceCollectionSubprovider extends Subprovider {
txHash: string | undefined,
cb: Callback,
): Promise<void> {
if (!txData.isFakeTransaction && !(txData.from === txData.to)) {
if (!(txData.isFakeTransaction || txData.from === txData.to)) {
// This transaction is a usual transaction. Not a call executed as one.
// And we don't want it to be executed within a snapshotting period
await this._lock.acquire();