Merge branch 'main' into zkbesu

This commit is contained in:
Fabio Di Fabio
2025-02-05 21:34:59 +01:00
35 changed files with 397 additions and 393 deletions

View File

@@ -43,4 +43,18 @@ public interface PendingTransaction {
* @return timestamp
*/
long getAddedAt();
/**
* Return the estimated amount memory that this pending transaction occupies
*
* @return the estimated memory size
*/
int memorySize();
/**
* Formats a string with detailed information about the pending transaction for debug purposes
*
* @return a string
*/
String toTraceLog();
}