Compare commits

...

4 Commits

Author SHA1 Message Date
Some Random Crypto Guy 1df18ca6a4 added hard fork 2 for v0.6.0 2024-10-22 12:04:03 +01:00
Some Random Crypto Guy 91b2ec275a Updated + fixed translations mechanism; updated fast-sync checkpoints; bumped version 2024-10-22 12:03:29 +01:00
Some Random Crypto Guy e45fdb863c Merge branch 'develop' 2024-10-21 14:18:51 +01:00
Some Random Crypto Guy 4d1c84fcaf Merge branch 'develop' 2024-10-04 10:06:24 +01:00
17 changed files with 26946 additions and 27582 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
# Salvium Zero v0.6.0-rc4
# Salvium Zero v0.6.0
Copyright (c) 2023-2024, Salvium
Portions Copyright (c) 2014-2023, The Monero Project
@@ -251,7 +251,7 @@ Tested on a Raspberry Pi Zero with a clean install of minimal Raspbian Stretch (
```bash
git clone https://github.com/salvium/salvium
cd salvium
git checkout v0.6.0-rc4
git checkout v0.6.0
```
* Build:
@@ -370,10 +370,10 @@ application.
cd salvium
```
* If you would like a specific [version/tag](https://github.com/salvium/salvium/tags), do a git checkout for that version. eg. 'v0.6.0-rc4'. If you don't care about the version and just want binaries from master, skip this step:
* If you would like a specific [version/tag](https://github.com/salvium/salvium/tags), do a git checkout for that version. eg. 'v0.6.0'. If you don't care about the version and just want binaries from master, skip this step:
```bash
git checkout v0.6.0-rc4
git checkout v0.6.0
```
* If you are on a 64-bit system, run:
Binary file not shown.
+1 -1
View File
@@ -6128,7 +6128,7 @@ void Blockchain::cancel()
}
#if defined(PER_BLOCK_CHECKPOINT)
static const char expected_block_hashes_hash[] = "b3351bdb7b7a894c746af6196ae4fb5289a342db43cd51dc663b51d0926277d7";
static const char expected_block_hashes_hash[] = "3cb6d33c311e54f2b8439a3e4cc047f6b9b74db9fd92955f1db131a5dfce1edf";
void Blockchain::load_compiled_in_block_hashes(const GetCheckpointsCallback& get_checkpoints)
{
if (get_checkpoints == nullptr || !m_fast_sync)
+2 -2
View File
@@ -35,8 +35,8 @@ const hardfork_t mainnet_hard_forks[] = {
// version 1 from the start of the blockchain
{ 1, 1, 0, 1341378000 },
// version 2 starts from block 1000, which is on or around the 20th of March, 2016. Fork time finalised on 2015-09-20. No fork voting occurs for the v2 fork.
//{ 2, 1000, 0, 1442763710 },
// version 2 starts from block 89800, which is on or around the 4th of November, 2024. Fork time finalised on 2024-10-21. No fork voting occurs for the v2 fork.
{ 2, 89800, 0, 1729518000 },
};
const size_t num_mainnet_hard_forks = sizeof(mainnet_hard_forks) / sizeof(mainnet_hard_forks[0]);
const uint64_t mainnet_hard_fork_version_1_till = ((uint64_t)-1);
+1 -1
View File
@@ -1,5 +1,5 @@
#define DEF_SALVIUM_VERSION_TAG "@VERSIONTAG@"
#define DEF_SALVIUM_VERSION "0.6.0-rc4"
#define DEF_SALVIUM_VERSION "0.6.0"
#define DEF_MONERO_VERSION_TAG "release"
#define DEF_MONERO_VERSION "0.18.3.3"
#define DEF_MONERO_RELEASE_NAME "Zero"
+1 -1
View File
@@ -135,7 +135,7 @@ namespace wallet_args
command_line::add_arg(desc_params, arg_max_concurrency);
command_line::add_arg(desc_params, arg_config_file);
i18n_set_language("translations", "monero", lang);
i18n_set_language("translations", "salvium", lang);
po::options_description desc_all;
desc_all.add(desc_general).add(desc_params);
+514 -464
View File
File diff suppressed because it is too large Load Diff
+2694 -2761
View File
File diff suppressed because one or more lines are too long
+2693 -2762
View File
File diff suppressed because it is too large Load Diff
+2742 -2811
View File
File diff suppressed because one or more lines are too long
+2650 -2719
View File
File diff suppressed because it is too large Load Diff
+2701 -2770
View File
File diff suppressed because one or more lines are too long
+2722 -2791
View File
File diff suppressed because it is too large Load Diff
+2609 -2678
View File
File diff suppressed because it is too large Load Diff
+2703 -2771
View File
File diff suppressed because one or more lines are too long
+2252 -2319
View File
File diff suppressed because it is too large Load Diff
+2657 -2727
View File
File diff suppressed because it is too large Load Diff