1
0
Fork 0
forked from lthn/blockchain

compilation fix

This commit is contained in:
sowle 2022-11-16 03:16:50 +01:00
parent 8543bb187f
commit 51fbe0fc19
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -319,7 +319,7 @@ namespace currency
{
std::list<uint64_t> amounts;
uint64_t decoys_count; // how many decoy outputs needed (per amount)
uint64_t height_upper_limit; // all the decoy outputs must be either older than, or the same age as this height
uint64_t height_upper_limit; // if nonzero, all the decoy outputs must be either older than, or the same age as this height
bool use_forced_mix_outs;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(amounts)
@ -336,6 +336,9 @@ namespace currency
out_entry(uint64_t global_amount_index, const crypto::public_key& stealth_address, const crypto::public_key& amount_commitment, const crypto::public_key& concealing_point)
: global_amount_index(global_amount_index), stealth_address(stealth_address), amount_commitment(amount_commitment), concealing_point(concealing_point)
{}
out_entry(uint64_t global_amount_index, const crypto::public_key& stealth_address)
: global_amount_index(global_amount_index), stealth_address(stealth_address), amount_commitment{}, concealing_point{}
{}
uint64_t global_amount_index;
crypto::public_key stealth_address;
crypto::public_key concealing_point;