(message: string, context?: any)
| 93 | */ |
| 94 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 95 | private throwError(message: string, context?: any): never { |
| 96 | log(`ERROR: ${message}`, context); |
| 97 | throw new Error(`EtherspotTransactionKit: ${message}`); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Clears the current working transaction, selected transaction, and selected batch state. |
no test coverage detected