| 4 | #include <tinyformat.h> |
| 5 | |
| 6 | void CConfidentialAsset::SetToAsset(const CAsset& asset) |
| 7 | { |
| 8 | vchCommitment.clear(); |
| 9 | vchCommitment.reserve(nExplicitSize); |
| 10 | vchCommitment.push_back(1); |
| 11 | vchCommitment.insert(vchCommitment.end(), asset.begin(), asset.end()); |
| 12 | } |
| 13 | |
| 14 | void CConfidentialValue::SetToAmount(const CAmount amount) |
| 15 | { |