diff --git a/src/app/units/Blockchain.ts b/src/app/units/Blockchain.ts index 9252ce7..389c21a 100644 --- a/src/app/units/Blockchain.ts +++ b/src/app/units/Blockchain.ts @@ -323,14 +323,10 @@ export class Blockchain extends Unit { this.logging.debug({peers}) let longestChain: Block[] = [] - const chains = await Promise.all( - peers.map(peer => this.getPeerSubmit(peer)) - ) + for ( const peer of peers ) { + const chain = await this.getPeerSubmit(peer) + console.log('got chain', chain) - this.logging.debug('Got peer chain info:') - this.logging.debug(chains) - - for ( const chain of chains ) { if ( chain && chain.length > longestChain.length