Browse Source

Merge pull request #94 from fdundjer/master

fix: add missing property
Filip Dunđer 1 year ago
parent
commit
cec68e2257
1 changed files with 1 additions and 1 deletions
  1. 1 1
      transactions/default-transaction-executor.ts

+ 1 - 1
transactions/default-transaction-executor.ts

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