Эх сурвалжийг харах

Merge pull request #94 from fdundjer/master

fix: add missing property
Filip Dunđer 1 жил өмнө
parent
commit
cec68e2257

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

@@ -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);