You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ Unless you need to set a non-default value, it is recommended to only populate o
34
34
|`CLIENT_TRANSPORT_SECURITY`| "false" | Flag to enable or disable TLS for both networks. |
35
35
|`CONSENSUS_MAX_EXECUTION_TIME`| "15000" | Maximum time in ms the SDK will wait when submitting a transaction/query before throwing a TIMEOUT error. |
36
36
|`CONTRACT_CALL_GAS_LIMIT`| "50_000_000" | Maximum gas limit applied to eth_call endpoint networks, the Relay will accept up to 50M but keep it capped at 15M for the actual call. |
37
-
|`CONTRACT_CODE_SIZE_LIMIT`| 24576 | Maximum contract code size in bytes (24KB by default) allowed for contract deployment transactions. This limit is enforced during transaction validation to prevent excessive gas consumption from oversized contracts. |
38
37
|`CONTRACT_QUERY_TIMEOUT_RETRIES`| "3" | Maximum retries for failed contract call query with timeout exceeded error |
39
38
|`DEBUG_API_ENABLED`| "false" | Enables all debug related methods: `debug_traceTransaction`|
40
39
|`DEFAULT_RATE_LIMIT`| "200" | default fallback rate limit, if no other is configured. |
Copy file name to clipboardExpand all lines: packages/relay/src/lib/clients/mirrorNodeClient.ts
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1555,7 +1555,6 @@ export class MirrorNodeClient {
1555
1555
* Retrieves and processes transaction record metrics from the mirror node based on the provided transaction ID.
1556
1556
*
1557
1557
* @param {string} transactionId - The ID of the transaction for which the record is being retrieved.
1558
-
* @param {string} callerName - The name of the caller requesting the transaction record.
1559
1558
* @param {string} txConstructorName - The name of the transaction constructor associated with the transaction.
1560
1559
* @param {string} operatorAccountId - The account ID of the operator, used to calculate transaction fees.
1561
1560
* @param {RequestDetails} requestDetails - The request details for logging and tracking.
@@ -1564,7 +1563,6 @@ export class MirrorNodeClient {
1564
1563
*/
1565
1564
publicasyncgetTransactionRecordMetrics(
1566
1565
transactionId: string,
1567
-
callerName: string,
1568
1566
txConstructorName: string,
1569
1567
operatorAccountId: string,
1570
1568
requestDetails: RequestDetails,
@@ -1573,7 +1571,7 @@ export class MirrorNodeClient {
1573
1571
1574
1572
if(this.logger.isLevelEnabled('debug')){
1575
1573
this.logger.debug(
1576
-
`${formattedRequestId} Get transaction record via mirror node: transactionId=${transactionId}, txConstructorName=${txConstructorName}, callerName=${callerName}`,
1574
+
`${formattedRequestId} Get transaction record via mirror node: transactionId=${transactionId}, txConstructorName=${txConstructorName}`,
1577
1575
);
1578
1576
}
1579
1577
@@ -1591,7 +1589,7 @@ export class MirrorNodeClient {
1591
1589
);
1592
1590
1593
1591
if(!transactionRecords){
1594
-
constnotFoundMessage=`No transaction record retrieved: transactionId=${transactionId}, txConstructorName=${txConstructorName}, callerName=${callerName}.`;
1592
+
constnotFoundMessage=`No transaction record retrieved: transactionId=${transactionId}, txConstructorName=${txConstructorName}.`;
`${requestDetails.formattedRequestId} Get transaction record via consensus node: transactionId=${transactionId}, txConstructorName=${txConstructorName}, callerName=${callerName}`,
743
+
`${requestDetails.formattedRequestId} Get transaction record via consensus node: transactionId=${transactionId}, txConstructorName=${txConstructorName}`,
0 commit comments