-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'monorepo/type-fixes-0xprefixed-hex' of https://github.c…
…om/ethereumjs/ethereumjs-monorepo into monorepo/type-fixes-0xprefixed-hex
- Loading branch information
Showing
18 changed files
with
5,065 additions
and
6,331 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import * as promClient from 'prom-client' | ||
|
||
export const setupMetrics = () => { | ||
return { | ||
legacyTxGauge: new promClient.Gauge({ | ||
name: 'legacy_transactions_in_transaction_pool', | ||
help: 'Number of legacy transactions in the client transaction pool', | ||
}), | ||
accessListEIP2930TxGauge: new promClient.Gauge({ | ||
name: 'access_list_eip2930_transactions_in_transaction_pool', | ||
help: 'Number of access list EIP 2930 transactions in the client transaction pool', | ||
}), | ||
feeMarketEIP1559TxGauge: new promClient.Gauge({ | ||
name: 'fee_market_eip1559_transactions_in_transaction_pool', | ||
help: 'Number of fee market EIP 1559 transactions in the client transaction pool', | ||
}), | ||
blobEIP4844TxGauge: new promClient.Gauge({ | ||
name: 'blob_eip_4844_transactions_in_transaction_pool', | ||
help: 'Number of blob EIP 4844 transactions in the client transaction pool', | ||
}), | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,5 +107,5 @@ describe( | |
assert.ok(res.error.message.includes('"pending" is not yet supported')) | ||
}) | ||
}, | ||
30000 | ||
40000 | ||
) |
Oops, something went wrong.