aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-tracing-utils/src/utils.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2019-01-17 21:37:15 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2019-01-17 21:37:15 +0800
commitfcdd0de9eea6b06449aaa9ac71dadfcd4faf4968 (patch)
treee175bfac31bea9fd3dee51aa69cbcc84291df9ea /packages/sol-tracing-utils/src/utils.ts
parent4c5bde1b544f66d70957824658ad37230735d527 (diff)
downloaddexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar.gz
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar.bz2
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar.lz
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar.xz
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.tar.zst
dexon-0x-contracts-fcdd0de9eea6b06449aaa9ac71dadfcd4faf4968.zip
Fix/simplify handling of revert trace snippets
Diffstat (limited to 'packages/sol-tracing-utils/src/utils.ts')
-rw-r--r--packages/sol-tracing-utils/src/utils.ts16
1 files changed, 12 insertions, 4 deletions
diff --git a/packages/sol-tracing-utils/src/utils.ts b/packages/sol-tracing-utils/src/utils.ts
index 644321f32..89c158ee7 100644
--- a/packages/sol-tracing-utils/src/utils.ts
+++ b/packages/sol-tracing-utils/src/utils.ts
@@ -8,6 +8,7 @@ import { ContractData, LineColumn, SingleFileSourceRange } from './types';
// This is the minimum length of valid contract bytecode. The Solidity compiler
// metadata is 86 bytes. If you add the '0x' prefix, we get 88.
const MIN_CONTRACT_BYTECODE_LENGTH = 88;
+const STATICCALL_GAS_COST = 40;
export const utils = {
compareLineColumn(lhs: LineColumn, rhs: LineColumn): number {
@@ -76,10 +77,17 @@ export const utils = {
normalizeStructLogs(structLogs: StructLog[]): StructLog[] {
if (structLogs[0].depth === 1) {
// Geth uses 1-indexed depth counter whilst ganache starts from 0
- const newStructLogs = _.map(structLogs, structLog => ({
- ...structLog,
- depth: structLog.depth - 1,
- }));
+ const newStructLogs = _.map(structLogs, structLog => {
+ const newStructLog = {
+ ...structLog,
+ depth: structLog.depth - 1,
+ };
+ if (newStructLog.op === 'STATICCALL') {
+ // HACK(leo): Geth traces sometimes returns those gas costs incorrectly as very big numbers so we manually fix them.
+ newStructLog.gasCost = STATICCALL_GAS_COST;
+ }
+ return newStructLog;
+ });
return newStructLogs;
}
return structLogs;