Skip to content

Commit 0d55d66

Browse files
Add the batch of release v3.4.5 commits
1 parent a448249 commit 0d55d66

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1276
-902
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ else()
142142
set_property(SOURCE ${SRC_SERIA} PROPERTY COMPILE_FLAGS -O3)
143143
endif()
144144
include_directories(src)
145-
include_directories(${CMAKE_BINARY_DIR})
145+
#include_directories(${CMAKE_BINARY_DIR})
146146
set(SOURCE_FILES
147147
${SRC_DB}
148148
${SRC_NO_WARNINGS}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bytecoin
22

3-
[![Build Status](https://dev.azure.com/bcndev/bytecoin/_apis/build/status/bytecoin-daemons?branchName=releases/3.4.4)](https://dev.azure.com/bcndev/bytecoin/_build/latest?definitionId=1&branchName=releases/3.4.4)
3+
[![Build Status](https://dev.azure.com/bcndev/bytecoin/_apis/build/status/bytecoin-daemons?branchName=releases/3.4.5)](https://dev.azure.com/bcndev/bytecoin/_build/latest?definitionId=1&branchName=releases/3.4.5)
44

55
## About
66

ReleaseNotes.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
## Release Notes
22

3+
### v3.4.5 (Amethyst)
4+
5+
- Tiny fixes in mining-related code. All miners are advised to update.
6+
7+
*API tweaks*
8+
- In `get_transfers` response, when filtering by address, filtering does not remove transfers from transactions, only returns less transactions
9+
- In `check_sendproof` error response, hash of referenced transaction is returned if proof is successfully parsed
10+
- In `check_sendproof` errors `ADDRESS_NOT_IN_TRANSACTION (-204)` and `ADDRESS_FAILED_TO_PARSE (-4)` removed, `PROOF_WRONG_SIGNATURE (-203)` will be reported instead.
11+
- `walletd` methods which do request to `bytecoind` - `create_transaction`, `send_transaction`, `create_sendproof` will now return special error `BYTECOIND_REQUEST_ERROR (-1003)` instead of `INTERNAL_ERROR (-32603)` when json RPC call to `bytecoind` fails.
12+
13+
*API deprecations (will be removed in future)*
14+
- In `get_transfers` response, `unlocked_transfers` for range of blocks deprecated, unlocked transfers are returned in corresponding blocks.
15+
- In `create_sendproof` request/response, `addresses/sendproofs` fields are deprecated, use `address/sendproof` instead. If using `address` field and proof canno be created, json RPC error `ADDRESS_NOT_IN_TRANSACTION (-204)` will be returned, instead of empty proof, as it was before.
16+
317
### v3.4.4 (Amethyst)
418

519
- `walletd` can now sync most of the blockchain from static files (tremendously increasing efficiency for public nodes), reverting to RPC only for the (small) part of blockchain after last hard checkpoint.

azure-pipelines.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ jobs:
5454
displayName: Clone daemons code
5555
5656
- script: |
57-
wget -c 'https://sourceforge.net/projects/boost/files/boost/1.69.0/boost_1_69_0.tar.gz'
58-
# wget -c 'https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz'
57+
wget -c 'https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz'
5958
mkdir boost && tar -xzf ./boost_1_69_0.tar.gz --directory boost --strip-components=1
6059
displayName: Fetch boost
6160
@@ -201,8 +200,7 @@ jobs:
201200
displayName: Clone daemons code
202201
203202
- bash: |
204-
curl -L -O https://sourceforge.net/projects/boost/files/boost/1.69.0/boost_1_69_0.zip
205-
# curl -L -O https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.zip
203+
curl -L -O https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.zip
206204
7z x boost_1_69_0.zip
207205
mv boost_1_69_0 boost
208206
displayName: Fetch boost

src/Core/BlockChain.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,11 @@ void BlockChain::test_undo_everything(Height new_tip_height) {
991991
undo_block(get_tip_bid(), raw_block, block, m_tip_height);
992992
if (get_tip_bid() == m_genesis_bid)
993993
break;
994+
if (m_tip_height <= new_tip_height) {
995+
std::cout << "Partial undo finished" << std::endl;
996+
db_commit();
997+
return;
998+
}
994999
pop_chain(block.header.previous_block_hash);
9951000
tip_changed();
9961001
while (test_prune_oldest()) { // prunning main branch

src/Core/BlockChainState.cpp

+14-11
Original file line numberDiff line numberDiff line change
@@ -126,18 +126,19 @@ void BlockChainState::DeltaState::clear(Height new_block_height) {
126126
}
127127

128128
// returns reward for coinbase transaction or fee for non-coinbase one
129-
static Amount validate_semantic(const Currency &currency, uint8_t block_major_version, bool generating,
129+
static Amount validate_semantic(const Currency &currency, uint8_t block_major_version, bool coinbase,
130130
const Transaction &tx, bool check_keys, bool key_image_subgroup_check) {
131-
if (tx.inputs.empty())
132-
throw ConsensusError("Empty inputs");
133131
// TODO - uncomment during next hard fork, finally prohibiting old signatures, outputs without secrets
134132
// We cannot do it at once, because mem pool will have v1 transactions during switch
135-
136133
// for compatibility, we create v1 coinbase transaction if mining on legacy address
137-
const bool is_tx_amethyst = tx.version >= currency.amethyst_transaction_version;
138-
if (block_major_version < currency.amethyst_block_version && is_tx_amethyst)
134+
const bool is_tx_amethyst = tx.version == currency.amethyst_transaction_version;
135+
136+
if ((block_major_version < currency.amethyst_block_version && is_tx_amethyst) ||
137+
(tx.version != 1 && !is_tx_amethyst))
139138
throw ConsensusError(common::to_string(
140139
"Wrong transaction version", int(tx.version), "in block version", int(block_major_version)));
140+
if (block_major_version >= currency.amethyst_block_version && !extra::is_valid(tx.extra))
141+
throw ConsensusError("Extra has wrong format");
141142
// Subgroup check policy is as following:
142143
// 1. output keys and encrypted output secrets are checked here
143144
// 2. keyimage is checked here (this is changed in amethyst)
@@ -168,13 +169,15 @@ static Amount validate_semantic(const Currency &currency, uint8_t block_major_ve
168169
}
169170
Amount summary_input_amount = 0;
170171
std::unordered_set<KeyImage> ki;
172+
if (tx.inputs.empty())
173+
throw ConsensusError("Empty inputs");
171174
for (const auto &input : tx.inputs) {
172175
Amount amount = 0;
173176
if (input.type() == typeid(InputCoinbase)) {
174-
if (!generating)
177+
if (!coinbase)
175178
throw ConsensusError("Coinbase input in non-coinbase transaction");
176179
} else if (input.type() == typeid(InputKey)) {
177-
if (generating)
180+
if (coinbase)
178181
throw ConsensusError("Key input in coinbase transaction");
179182
const InputKey &in = boost::get<InputKey>(input);
180183
amount = in.amount;
@@ -190,10 +193,10 @@ static Amount validate_semantic(const Currency &currency, uint8_t block_major_ve
190193
if (!add_amount(summary_input_amount, amount))
191194
throw ConsensusError("Outputs amounts overflow");
192195
}
193-
if (summary_output_amount > summary_input_amount && !generating)
196+
if (summary_output_amount > summary_input_amount && !coinbase)
194197
throw ConsensusError("Sum of outputs > sum of inputs in non-coinbase transaction");
195198
// Types/count of signatures is derived from tx body during transaction serialization
196-
if (generating)
199+
if (coinbase)
197200
return summary_output_amount;
198201
return summary_input_amount - summary_output_amount;
199202
}
@@ -938,7 +941,7 @@ std::vector<PublicKey> BlockChainState::get_mixed_public_keys(const InputKey &in
938941
return output_keys;
939942
}
940943

941-
void BlockChainState::redo_transaction(uint8_t major_block_version, bool generating, const Transaction &transaction,
944+
void BlockChainState::redo_transaction(uint8_t major_block_version, bool coinbase, const Transaction &transaction,
942945
DeltaState *delta_state, BlockGlobalIndices *global_indices, Hash *newest_referenced_bid, bool check_sigs) const {
943946
const bool check_outputs = check_sigs;
944947
const bool is_tx_amethyst = transaction.version >= m_currency.amethyst_transaction_version;

src/Core/BlockChainState.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class BlockChainState : public BlockChain, private IBlockChainState {
133133
bool read_hidden_amount_output(size_t hidden_index, OutputIndexData *) const;
134134
void spend_output(OutputIndexData &&, size_t hidden_index, size_t trigger_input_index, size_t level, bool spent);
135135

136-
void redo_transaction(uint8_t major_block_version, bool generating, const Transaction &, DeltaState *,
136+
void redo_transaction(uint8_t major_block_version, bool coinbase, const Transaction &, DeltaState *,
137137
BlockGlobalIndices *, Hash *newest_referenced_bid,
138138
bool check_sigs) const; // throws ConsensusError
139139
void redo_block(

src/Core/CryptoNoteTools.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ using namespace cn;
1212

1313
Hash cn::get_root_block_base_transaction_hash(const RootBaseTransaction &tx) {
1414
if (tx.version < 2)
15-
return get_object_hash(tx);
15+
return get_object_hash(tx, nullptr);
1616
// XMR(XMO) as popular MM root, see details in monero/src/cryptonote_basic/cryptonote_format_utils.cpp
1717
// bc36789e7a1e281436464229828f817d6612f7b477d66591ff96a9e064bcc98a = hash(1 zero byte (RCTTypeNull))
1818
crypto::KeccakStream hasher;
1919
static const unsigned char append_data[64] = {0xbc, 0x36, 0x78, 0x9e, 0x7a, 0x1e, 0x28, 0x14, 0x36, 0x46, 0x42,
2020
0x29, 0x82, 0x8f, 0x81, 0x7d, 0x66, 0x12, 0xf7, 0xb4, 0x77, 0xd6, 0x65, 0x91, 0xff, 0x96, 0xa9, 0xe0, 0x64,
2121
0xbc, 0xc9, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2222
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
23-
const Hash ha = get_object_hash(static_cast<const TransactionPrefix &>(tx));
23+
const Hash ha = get_object_hash(static_cast<const TransactionPrefix &>(tx), nullptr, true);
2424
hasher.append(ha);
2525
hasher.append(append_data, sizeof(append_data));
2626
return hasher.cn_fast_hash();

src/Core/CryptoNoteTools.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
namespace cn {
1212

13-
template<class T>
14-
Hash get_object_hash(const T &object, size_t *size = nullptr) {
15-
BinaryArray ba = seria::to_binary(object);
13+
template<class T, typename... Context>
14+
Hash get_object_hash(const T &object, size_t *size, Context... context) {
15+
BinaryArray ba = seria::to_binary(object, context...);
1616
if (size)
1717
*size = ba.size();
1818
return crypto::cn_fast_hash(ba.data(), ba.size());

src/Core/Currency.cpp

+10-12
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "Difficulty.hpp"
1212
#include "TransactionBuilder.hpp"
1313
#include "TransactionExtra.hpp"
14+
#include "Wallet.hpp"
1415
#include "common/Base58.hpp"
1516
#include "common/StringTools.hpp"
1617
#include "common/Varint.hpp"
@@ -57,7 +58,6 @@ Currency::Currency(const std::string &net)
5758
, mined_money_unlock_window(MINED_MONEY_UNLOCK_WINDOW)
5859
, block_future_time_limit(BLOCK_FUTURE_TIME_LIMIT)
5960
, money_supply(MONEY_SUPPLY)
60-
, emission_speed_factor(EMISSION_SPEED_FACTOR)
6161
, median_block_size_window(MEIDAN_BLOCK_SIZE_WINDOW)
6262
, block_capacity_vote_window(BLOCK_CAPACITY_VOTE_WINDOW)
6363
, max_header_size(MAX_HEADER_SIZE)
@@ -73,8 +73,8 @@ Currency::Currency(const std::string &net)
7373
, key_image_subgroup_checking_height(KEY_IMAGE_SUBGROUP_CHECKING_HEIGHT)
7474
, amethyst_block_version(BLOCK_VERSION_AMETHYST)
7575
, amethyst_transaction_version(TRANSACTION_VERSION_AMETHYST)
76-
, upgrade_vote_minor(7)
77-
, upgrade_indicator_minor(7) // We may now not need separate upgrade_indicator_minor
76+
, upgrade_vote_minor(8)
77+
, upgrade_indicator_minor(8) // We may now not need separate upgrade_indicator_minor
7878
, upgrade_desired_major(4)
7979
, upgrade_voting_window(UPGRADE_VOTING_WINDOW)
8080
, upgrade_window(UPGRADE_WINDOW)
@@ -103,7 +103,7 @@ Currency::Currency(const std::string &net)
103103
// coinbase_transaction.version = 1;
104104
// coinbase_transaction.unlock_block_or_timestamp = mined_money_unlock_window;
105105
// coinbase_transaction.inputs.push_back(CoinbaseInput{0});
106-
// coinbase_transaction.outputs.push_back(TransactionOutput{money_supply >> emission_speed_factor,
106+
// coinbase_transaction.outputs.push_back(TransactionOutput{money_supply >> EMISSION_SPEED_FACTOR,
107107
// KeyOutput{genesis_output_key}});
108108
// extra_add_transaction_public_key(coinbase_transaction.extra, genesis_tx_public_key);
109109
// invariant(miner_tx_blob == seria::to_binary(coinbase_transaction), "Demystified transaction does not
@@ -256,9 +256,8 @@ size_t Currency::minimum_anonymity(uint8_t block_major_version) const {
256256
Amount Currency::get_base_block_reward(
257257
uint8_t block_major_version, Height height, Amount already_generated_coins) const {
258258
invariant(already_generated_coins <= money_supply, "");
259-
invariant(emission_speed_factor > 0 && emission_speed_factor <= 8 * sizeof(Amount), "");
260259

261-
return (money_supply - already_generated_coins) >> emission_speed_factor;
260+
return (money_supply - already_generated_coins) >> EMISSION_SPEED_FACTOR;
262261
}
263262

264263
Amount Currency::get_block_reward(uint8_t block_major_version, Height height, size_t effective_median_size,
@@ -292,9 +291,8 @@ Transaction Currency::construct_miner_tx(const Hash &miner_secret, uint8_t block
292291
tx.inputs.push_back(InputCoinbase{height});
293292

294293
Hash tx_inputs_hash = get_transaction_inputs_hash(tx);
295-
KeyPair txkey = miner_secret == Hash{}
296-
? crypto::random_keypair()
297-
: TransactionBuilder::transaction_keys_from_seed(tx_inputs_hash, miner_secret);
294+
KeyPair txkey = miner_secret == Hash{} ? crypto::random_keypair()
295+
: Wallet::transaction_keys_from_seed(tx_inputs_hash, miner_secret);
298296

299297
if (!is_tx_amethyst)
300298
extra::add_transaction_public_key(tx.extra, txkey.public_key);
@@ -309,9 +307,9 @@ Transaction Currency::construct_miner_tx(const Hash &miner_secret, uint8_t block
309307

310308
Amount summary_amounts = 0;
311309
for (size_t out_index = 0; out_index < out_amounts.size(); out_index++) {
312-
const Hash output_seed =
313-
miner_secret == Hash{} ? crypto::rand<Hash>()
314-
: TransactionBuilder::generate_output_seed(tx_inputs_hash, miner_secret, out_index);
310+
const Hash output_seed = miner_secret == Hash{}
311+
? crypto::rand<Hash>()
312+
: Wallet::generate_output_seed(tx_inputs_hash, miner_secret, out_index);
315313
PublicKey output_shared_secret;
316314
OutputKey tk = TransactionBuilder::create_output(is_tx_amethyst, miner_address, txkey.secret_key,
317315
tx_inputs_hash, out_index, output_seed, &output_shared_secret);

src/Core/Currency.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ class Currency { // Consensus calculations depend on those parameters
3131
Timestamp block_future_time_limit;
3232

3333
Amount money_supply;
34-
unsigned int emission_speed_factor;
3534

3635
Height median_block_size_window;
3736
Height block_capacity_vote_window;

0 commit comments

Comments
 (0)