You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following files are removed:
- doc/gitian-building.md
- doc/release-notes-pr12924.md
- doc/travis-ci.md
General updates to multiple other files to reflect the current workflow.
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ The `master` branch is regularly built and tested, but is not guaranteed to be
28
28
completely stable. [Tags](https://github.com/RavenProject/Ravencoin/tags) are created
29
29
regularly to indicate new official, stable release versions of Raven Core.
30
30
31
+
Active development is done in the `develop` branch.
32
+
31
33
The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
32
34
33
35
Developer IRC is inactive please join us on discord in #development. https://discord.gg/fndp4NBGct
@@ -40,9 +42,7 @@ requests than we can review and test on short notice. Please be patient and help
40
42
other people's pull requests, and remember this is a security-critical project where any mistake might cost people
41
43
lots of money.
42
44
43
-
Testnet is now up and running and available to use during development. There is an issue when connecting to the testnet that requires the use of the -maxtipage parameter in order to connect to the test network initially. After the initial launch the -maxtipage parameter is not required.
44
-
45
-
Use this command to initially start ravend on the testnet. <code>./ravend -testnet -maxtipage=259200</code>
45
+
Testnet is up and running and available to use during development.
Copy file name to clipboardexpand all lines: doc/bips.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
BIPs that are implemented by Raven Core (up-to-date up to **v0.13.0**):
1
+
BIPs that are implemented by Ravencoin (up-to-date up to **v0.13.0**):
2
2
3
3
*[`BIP 9`](https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki): The changes allowing multiple soft-forks to be deployed in parallel have been implemented since **v0.12.1** ([PR #7575](https://github.com/bitcoin/bitcoin/pull/7575))
4
4
*[`BIP 11`](https://github.com/bitcoin/bips/blob/master/bip-0011.mediawiki): Multisig outputs are standard since **v0.6.0** ([PR #669](https://github.com/bitcoin/bitcoin/pull/669)).
Copy file name to clipboardexpand all lines: doc/reduce-memory.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The size of some in-memory caches can be reduced. As caches trade off memory usa
20
20
21
21
- Do not use this when using the client to broadcast transactions as any transaction sent will stick out like a sore thumb, affecting privacy. When used with the wallet it should be combined with `-walletbroadcast=0` and `-spendzeroconfchange=0`. Another mechanism for broadcasting outgoing transactions (if any) should be used.
22
22
23
-
- Since `0.14.0`, unused memory allocated to the mempool (default: 300MB) is shared with the UTXO cache, so when trying to reduce memory usage you should limit the mempool, with the `-maxmempool` command line argument.
23
+
- Since bitcoin `0.14.0`, unused memory allocated to the mempool (default: 300MB) is shared with the UTXO cache, so when trying to reduce memory usage you should limit the mempool, with the `-maxmempool` command line argument.
0 commit comments