diff --git a/packages/indy-vdr/src/pool/IndyVdrPoolService.ts b/packages/indy-vdr/src/pool/IndyVdrPoolService.ts index 5645ec8eaa..0eea7b1239 100644 --- a/packages/indy-vdr/src/pool/IndyVdrPoolService.ts +++ b/packages/indy-vdr/src/pool/IndyVdrPoolService.ts @@ -160,7 +160,11 @@ export class IndyVdrPoolService { * Get all pool transactions */ public getAllPoolTransactions() { - return Promise.allSettled(this.pools.map((pool) => pool.transactions)) + return Promise.allSettled( + this.pools.map(async (pool) => { + return { config: pool.config, transactions: await pool.transactions } + }) + ) } /**