Currenty we will join history db to get confirmed block meta for every funding transaction and spending transcation when iterate over all history transactions for specific address when getting utxos which will call history_db.get() every transaction. Thus slower the utxo API endpoint
After change we can only use confirmed_height to query block from in-memory indexed headers meta to speed up the process, which will significantly improve the utxo API endpoint performance
confirmed_height
to query block from in-memory indexed headers meta to speed up the process, which will significantly improve the utxo API endpoint performance