| 747 | } |
| 748 | |
| 749 | static bool PersistNativeAsset(CCacheWrapper& cw) { |
| 750 | CAsset wicc(SYMB::WICC, SYMB::WICC, AssetType::NIA, kWiccPerms, CRegID(), INITIAL_BASE_COIN_AMOUNT * COIN, false); |
| 751 | CAsset wusd(SYMB::WUSD, SYMB::WUSD, AssetType::MPA, kWusdPerms, CRegID(), 0, true); |
| 752 | CAsset wgrt(SYMB::WGRT, SYMB::WGRT, AssetType::NIA, kWgrtPerms, CRegID(), FUND_COIN_GENESIS_TOTAL_RELEASE_AMOUNT * COIN, true); |
| 753 | |
| 754 | return cw.assetCache.SetAsset(wicc) && |
| 755 | cw.assetCache.SetAsset(wusd) && |
| 756 | cw.assetCache.SetAsset(wgrt); |
| 757 | } |
| 758 | |
| 759 | static bool PersistDefaultFeedCoinPairs(CCacheWrapper& cw) { |
| 760 |
no test coverage detected