Skip to content

Commit

Permalink
Merge pull request #206 from sumoprojects/dev
Browse files Browse the repository at this point in the history
 [Dev to master] Prepare for v0.5.1.0 release
  • Loading branch information
sumoprojects authored Jun 17, 2019
2 parents 60d9bd7 + 8cd2f8f commit b20d915
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Tested on a Raspberry Pi Zero with a clean install of minimal Raspbian Stretch (
```
git clone https://github.com/sumoprojects/sumokoin.git
cd sumokoin
git checkout tags/v0.5.0.0
git checkout tags/v0.5.1.0
```
* Build:
Expand Down Expand Up @@ -253,7 +253,7 @@ If you are using the older Raspbian Jessie image, compiling Sumokoin is a bit mo

* Wait ~4 hours

* From here, follow the [general Raspberry Pi instructions](#on-the-raspberry-pi) from the "Clone Sumokoin and checkout most recent release version" step.
* From here, follow the [general Raspberry Pi instructions](#on-the-raspberry-pi) from the "Clone sumokoin and checkout most recent release version" step.

#### On Windows:

Expand Down Expand Up @@ -544,7 +544,7 @@ to add a rule to allow this connection too, in addition to telling torsocks to
allow inbound connections. Full example:
```bash
sudo iptables -I OUTPUT 2 -p tcp -d 127.0.0.1 -m tcp --dport 18081 -j ACCEPT
sudo iptables -I OUTPUT 2 -p tcp -d 127.0.0.1 -m tcp --dport 19733 -j ACCEPT
DNS_PUBLIC=tcp torsocks ./sumokoind --p2p-bind-ip 127.0.0.1 --no-igd --rpc-bind-ip 127.0.0.1 \
--data-dir /home/amnesia/Persistent/your/directory/to/the/blockchain
```
Expand Down
Binary file modified src/blocks/checkpoints.dat
Binary file not shown.
1 change: 1 addition & 0 deletions src/checkpoints/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ namespace cryptonote
ADD_CHECKPOINT(199800, "d8c7fcfcf605e834b3125b68cc96736e1f1d2f753c79c24db8fb9d6af4b84293"); // v6 fork
ADD_CHECKPOINT(274000, "49d2579161c277b9d9fe6baba5aabcef1534e9abef93eaa7f17cc8fe229454b0"); // v7 fork
ADD_CHECKPOINT(274360, "66c129116187f36980a97333f1c7cf99c21629cc52bc6d591126d3a8fe36b90a"); // v8 fork
ADD_CHECKPOINT(294360, "81b86ce75b91efcb329376eda835531fb05657d2f184a2ed9e899dba54f0515e");

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/cryptonote_core/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4897,7 +4897,7 @@ void Blockchain::cancel()
}

#if defined(PER_BLOCK_CHECKPOINT)
static const char expected_block_hashes_hash[] = "d45ce1670f6adf7c4270639d500fac541585e15698a58c036ad129200d77e994";
static const char expected_block_hashes_hash[] = "8bd6c4fff119d791d1be231a3743fa3978368cabdcd513fccfad4656e8ce2c57";
void Blockchain::load_compiled_in_block_hashes(const GetCheckpointsCallback& get_checkpoints)
{
if (get_checkpoints == nullptr || !m_fast_sync)
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define DEF_SUMOKOIN_VERSION_TAG "@VERSIONTAG@"
#define DEF_SUMOKOIN_VERSION "0.5.0.0"
#define DEF_SUMOKOIN_VERSION "0.5.1.0"
#define DEF_SUMOKOIN_RELEASE_NAME "Morioka"
#define DEF_SUMOKOIN_VERSION_FULL DEF_SUMOKOIN_VERSION "-" DEF_SUMOKOIN_VERSION_TAG

Expand Down

0 comments on commit b20d915

Please sign in to comment.