HomePhabricator

Combine CCoinsViewCache's HaveCoins and const GetCoins into AccessCoins.
629d75faac84Unpublished

Unpublished Commit ยท Learn More

Repository Importing: This repository is still importing.

Description

Combine CCoinsViewCache's HaveCoins and const GetCoins into AccessCoins.

The efficient version of CCoinsViewCache::GetCoins only works for known-to-exist
cache entries, requiring a separate HaveCoins call beforehand. This is
inefficient as both perform a hashtable lookup.

Replace the non-mutable GetCoins with AccessCoins, which returns a potentially-NULL
pointer. This also decreases the overloading of GetCoins.

Also replace some copying (inefficient) GetCoins calls with equivalent AccessCoins,
decreasing the copying.

Details

Provenance
Pieter Wuille <pieter.wuille@gmail.com>Authored on Sep 2 2014, 19:21
deadalnixPushed on May 14 2017, 22:04
Parents
rABCb8d92236f616: Merge pull request #4812
Branches
Unknown
Tags
Unknown

Event Timeline

Pieter Wuille <pieter.wuille@gmail.com> committed rABC629d75faac84: Combine CCoinsViewCache's HaveCoins and const GetCoins into AccessCoins. (authored by Pieter Wuille <pieter.wuille@gmail.com>).Sep 3 2014, 12:24