nervosnetwork / ckb-integration-test

0 stars 6 forks source link

fix(ckb-bench): fix TransactionFailedToResolve #113

Closed gpBlockchain closed 1 year ago

gpBlockchain commented 1 year ago

Updating the cache again should be performed after iterating through all users because updating the cache capacity after iterating through just one user may result in producing cells that have already been used later on.

for{

  for{
  resize
  }
}

change

for{

  for{

  }
  resize
}