add missing property

This commit is contained in:
Filip Dunder
2024-04-21 18:56:44 +02:00
parent 95ae801a53
commit 142a915e1a

View File

@ -15,7 +15,7 @@ export class DefaultTransactionExecutor implements TransactionExecutor {
transaction: VersionedTransaction, transaction: VersionedTransaction,
payer: Keypair, payer: Keypair,
latestBlockhash: BlockhashWithExpiryBlockHeight, latestBlockhash: BlockhashWithExpiryBlockHeight,
): Promise<{ confirmed: boolean; signature?: string }> { ): Promise<{ confirmed: boolean; signature?: string, error?: string }> {
logger.debug('Executing transaction...'); logger.debug('Executing transaction...');
const signature = await this.execute(transaction); const signature = await this.execute(transaction);