From 2efd2a1939cf262620b12aee277ce1d46809d11f Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 19:51:17 +0530 Subject: [PATCH 01/11] Update README.md --- README.md | 197 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 147 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index 274aa7a1b0..0688fd3613 100644 --- a/README.md +++ b/README.md @@ -1,60 +1,115 @@ -![](share/pixmaps/BGL64.png) BGL Core integration/staging tree + +
+

+ + Logo + + +

Bitgesell (BGL)

+ +

+ Bitgesell (BGL) is an experimental digital currency +
+ Explore more about project » +
+
+ English + · + Chinese +

+

+ + + + +
+ Table of Contents +
    +
  1. + About The Project + +
  2. +
  3. + Getting Started + +
  4. +
  5. Roadmap
  6. +
  7. Contributing
  8. +
  9. License
  10. +
  11. Contact
  12. +
  13. Translations
  14. +
+
+ + + +## About The Project + +![Product Name Screen Shot](https://github.com/BitgesellOfficial/bitgesell/blob/master/share/pixmaps/BGL64.png) + +BGL is an experimental digital currency that enables instant payments to anyone, anywhere in the world. BGL uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. BGL Core is the name of open source software which enables the use of this currency. + +Bitgesell is a fork of bitcoin with the following changes:
+* Block Reward [Burn rate is 90% of tx fees] + ```sh + nFees*0.1 + GetBlockSubsidy() + ``` +* Block Weight [10 times smaller than Bitcoin] + ```sh + <= 400,000 + ``` +* 100% Segwit + ```sh + Eliminates problems with legacy type of transactions + ``` +* Halving Interval [Halving cycle of bitgetsell is 1yr while that of bitcoin is 4yr] + ```sh + 210000 blocks/4 + ``` +* Block Subsidy [Max coins = 21,000,000]
+ `210000 blocks/4`
+ `Hashing algorithm for blocks is Keccak (sha-3).`
+ `The master branch is regularly built (see [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) for instructions) and tested, but is not guaranteed to be completely stable.`
+ `[tags](https://github.com/BitgesellOfficial/bitgesell/tags) are created regularly to indicate new official, stable release versions of BGL Core.`
+ + +### Built With + +* [C++](#) +* [C](#) +* [Python](#) +* [SourcePawn](#) +* [M4](#) +* [Shell](#) + + + +## Getting Started + +The https://github.com/BGL-core/gui repository is used exclusively for the development of the GUI. Its master branch is identical in all monotree repositories. Release branches and tags do not exist, so please do not fork that repository unless it is for development reasons. + +Official thread: [click here](https://bitcointalk.org/index.php?topic=5238559.0) -[English](#) | [Chinese](./README-zh.md) - -What is BGL? ----------------- - -BGL is an experimental digital currency that enables instant payments to -anyone, anywhere in the world. BGL uses peer-to-peer technology to operate -with no central authority: managing transactions and issuing money are carried -out collectively by the network. BGL Core is the name of open source -software which enables the use of this currency. - -For more information read the original BGL whitepaper. - -License -------- - -Essentially this is a full Bitcoin fork, but: -* Block Reward = nFees*0.1 + GetBlockSubsidy() // Burn rate is 90% of tx fees -* Block Weight <= 400,000; // 10 times smaller than Bitcoin -* 100% Segwit // Eliminates problems with legacy types of transactions -* Halving Interval = 210000 blocks / 4; // Halving is every year (Bitcoin halving is every 4 years) -* Block Subsidy = 50 * 4; // 21 000 000 coins max -* Hashing algorithm for blocks is Keccak (sha-3). -The `master` branch is regularly built (see doc/build-*.md for instructions) and tested, but is not guaranteed to be -completely stable. [Tags](https://github.com/BitgesellOfficial/bitgesell/tags) are created -regularly to indicate new official, stable release versions of BGL Core. - -The https://github.com/BGL-core/gui repository is used exclusively for the -development of the GUI. Its master branch is identical in all monotree -repositories. Release branches and tags do not exist, so please do not fork -that repository unless it is for development reasons. - -Official thread: https://bitcointalk.org/index.php?topic=5238559.0 - -License -------- - -Testing and code review is the bottleneck for development; we get more pull -requests than we can review and test on short notice. Please be patient and help out by testing -other people's pull requests, and remember this is a security-critical project where any mistake might cost people -lots of money. ### Automated Testing -Developers are strongly encouraged to write [unit tests](src/test/README.md) for new code, and to +Developers are strongly encouraged to write [unit tests](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md) for new code, and to submit new unit tests for old code. Unit tests can be compiled and run (assuming they weren't disabled in configure) with: `make check`. Further details on running -and extending unit tests can be found in [/src/test/README.md](/src/test/README.md). +and extending unit tests can be found in [src/test/README.md](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md).
-There are also [regression and integration tests](/test), written -in Python. -These tests can be run (if the [test dependencies](/test) are installed) with: `test/functional/test_runner.py` +There are also [regression and integration tests](https://github.com/BitgesellOfficial/bitgesell/tree/master/test), written +in Python.
+These tests can be run (if the [test dependencies](https://github.com/BitgesellOfficial/bitgesell/tree/master/test) with: `test/functional/test_runner.py`
The CI (Continuous Integration) systems make sure that every pull request is built for Windows, Linux, and macOS, -and that unit/sanity tests are run automatically. +and that unit/sanity tests are run automatically.
+ ### Manual Quality Assurance (QA) Testing @@ -63,8 +118,48 @@ code. This is especially important for large or high-risk changes. It is useful to add a test plan to the pull request description if testing the changes is not straightforward. -Translations ------------- + + +## Roadmap + +See the [open issues](https://github.com/BitgesellOfficial/bitgesell/issues) for a list of proposed features (and known issues). + + + + +## Contributing + +Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. + +1. Fork the Project +2. Create your Feature Branch +3. Commit your Changes +4. Push to the Branch +5. Open a Pull Request + + + + +## License + +Distributed under the MIT License. See [LICENSE](https://github.com/BitgesellOfficial/bitgesell/blob/master/COPYING) for more information. + + + + +## Contact + +Discord - [Bitgesell](https://discord.com/invite/Ubp359vZEF) + +Twitter: [Bitgesell](https://twitter.com/Bitgesell) + +Medium: [Bitgesell](https://bitgesell.medium.com/) + +Facebook: [Bitgesell](https://www.facebook.com/Bitgesell) + + + +## Translations Changes to translations as well as new translations can be submitted to [BGL Core's Transifex page](https://www.transifex.com/bitcoin/bitcoin/). @@ -74,3 +169,5 @@ Translations are periodically pulled from Transifex and merged into the git repo **Important**: We do not accept translation changes as GitHub pull requests because the next pull from Transifex would automatically overwrite them again. + + From c17d54ee4655e25d82eace700248a0e58774a14a Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 19:52:38 +0530 Subject: [PATCH 02/11] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0688fd3613..cc223340f3 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,7 @@ BGL is an experimental digital currency that enables instant payments to anyone, ## Getting Started +Visit official website: [click here](https://bitgesell.ca/) The https://github.com/BGL-core/gui repository is used exclusively for the development of the GUI. Its master branch is identical in all monotree repositories. Release branches and tags do not exist, so please do not fork that repository unless it is for development reasons. Official thread: [click here](https://bitcointalk.org/index.php?topic=5238559.0) From 67fe243e758b9d298ad05e9b1534eb7a5309063d Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 20:38:49 +0530 Subject: [PATCH 03/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc223340f3..d6304731c6 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ BGL is an experimental digital currency that enables instant payments to anyone, ## Getting Started -Visit official website: [click here](https://bitgesell.ca/) +Visit official website: [click here](https://bitgesell.ca/)
The https://github.com/BGL-core/gui repository is used exclusively for the development of the GUI. Its master branch is identical in all monotree repositories. Release branches and tags do not exist, so please do not fork that repository unless it is for development reasons. Official thread: [click here](https://bitcointalk.org/index.php?topic=5238559.0) From 59787d1adca0bd1c0f1a7884540a70489a2ec51c Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 20:39:36 +0530 Subject: [PATCH 04/11] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d6304731c6..e9cf281d64 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ BGL is an experimental digital currency that enables instant payments to anyone, ## Getting Started Visit official website: [click here](https://bitgesell.ca/)
+ The https://github.com/BGL-core/gui repository is used exclusively for the development of the GUI. Its master branch is identical in all monotree repositories. Release branches and tags do not exist, so please do not fork that repository unless it is for development reasons. Official thread: [click here](https://bitcointalk.org/index.php?topic=5238559.0) From ab9f0d6c0dc043928655c2635b36fc8c2065236d Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 20:41:24 +0530 Subject: [PATCH 05/11] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9cf281d64..0b9b21455a 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ The https://github.com/BGL-core/gui repository is used exclusively for the devel Official thread: [click here](https://bitcointalk.org/index.php?topic=5238559.0) -### Automated Testing +## Automated Testing Developers are strongly encouraged to write [unit tests](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md) for new code, and to submit new unit tests for old code. Unit tests can be compiled and run @@ -113,7 +113,7 @@ The CI (Continuous Integration) systems make sure that every pull request is bui and that unit/sanity tests are run automatically.
-### Manual Quality Assurance (QA) Testing +## Manual Quality Assurance (QA) Testing Changes should be tested by somebody other than the developer who wrote the code. This is especially important for large or high-risk changes. It is useful From 3799d0dd8e0e74eeed63c03735c4c6530229ce5d Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Thu, 22 Jul 2021 21:10:19 +0530 Subject: [PATCH 06/11] Update README-zh.md --- README-zh.md | 233 +++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 171 insertions(+), 62 deletions(-) diff --git a/README-zh.md b/README-zh.md index 2fcdc85a38..e131dae860 100644 --- a/README-zh.md +++ b/README-zh.md @@ -1,62 +1,171 @@ -[](share/pixmaps/BGL64.png) BGL Core integration/staging tree - - - -[English](./README.md) | [Chinese](#) - -BGL是什么? ----------------- -BGL是一种实验性的数字货币,世界上任何地方的任何人,都可以实现即时支付。 -BGL使用点对点技术进行操作,没有中央权威:管理交易和发行货币由网络控制。 -BGL Core是开源的名称,让你能够使用这种货币的软件。 -想要了解更多信息,请阅读原 BGL白皮书。 - -许可证 -------- -本质上,这是一个完整的比特币分叉,但是: -* Block Reward = nFees*0.1 + GetBlockSubsidy() //消耗率为tx费用的90% -* Block Weight <= 400,000; //比比特币小10倍 -* 100% Segwit //消除遗留事务类型的问题 -* Halving Interval = 210000 blocks / 4; //每年减半(比特币每4年减半) -* Block Subsidy = 50 * 4; // 2100万金币 -* block的哈希算法是 Keccak (sha-3)。 -`master`分支是定期构建的(参见doc/build-*。Md为指令)和测试,但不能保证 -完全稳定。创建的[标记](https://github.com/BitgesellOfficial/bitgesell/tags) -版本,将会定期显示新的官方的、稳定的BGL核心版本。 - -https://github.com/BGL-core/gui 存储库是专门用于开发的GUI。它的主分支在所有的单树中是相同的存储库。 -发行分支和标签不存在,所以请不要分叉除非是为了开发的原因。 -官方线程:https://bitcointalk.org/index.php?topic=5238559.0 - -许可证 -------- -测试和代码评审是开发的瓶颈;我们得到了很多的关注,导致我们需要在短时间内审查和测试的请求。 -请耐心点,通过测试其他人的PR请求来帮助我们,记住这是一个注重安全的项目,任何错误都可能导致人员损失 -很多钱。 - -# # #自动化测试 -强烈鼓励开发人员为新代码编写[单元测试](src/test/README.md),然后 -为旧代码提交新的单元测试。可以编译和运行单元测试 -(假设它们在configure中没有被禁用)使用: `make check`。 -关于更多细节,扩展单元测试可以在[/src/test/README.md](/src/test/README.md)中找到。 -还有使用Python编写的[回归和集成测试](/test)。 -可以使用`test/functional/test_runner.py`运行这些测试(如果安装了[test依赖项](/test)) -CI(持续集成)系统确保每个pull请求都是为Windows、Linux和macOS构建的, -并且单元/健全测试是自动运行的。 - -手动(QA)测试保证质量 ------------- -更改应该由编写程序的开发人员以外的其他人来测试代码。 -这对于大的或者高风险的变更尤其重要。是很有用的. - - - -翻译 ------------- -对翻译的更改和新的翻译都可以提交到 -[BGL Core的Transifex页面](https://www.transifex.com/bitcoin/bitcoin/)。 -翻译会定期从Transifex中提取并合并到git仓库中。看到 - -[translation process](doc/translation_process.md)详细介绍如何工作。 -**重要的是**:我们不接受翻译更改作为GitHub pull请求,因为下一个 -pull from Transifex会自动再次覆盖它们。 \ No newline at end of file + +
+

+ + Logo + + +

Bitgesell (BGL)

+ +

+ Bitgesell (BGL) 是一種實驗性數字貨幣 +
+ 探索更多關於項目 » +
+
+ English + · + Chinese +

+

+ + + + +
+ 目錄 +
    +
  1. + 關於該項目 + +
  2. +
  3. + 入門 + +
  4. +
  5. 路線圖
  6. +
  7. 貢獻
  8. +
  9. 執照
  10. +
  11. 接觸
  12. +
  13. 翻譯
  14. +
+
+ + + +## 關於該項目 + +![Product Name Screen Shot](https://github.com/BitgesellOfficial/bitgesell/blob/master/share/pixmaps/BGL64.png) + +BGL 是一種實驗性數字貨幣,可以向世界上任何地方的任何人即時付款。BGL 使用點對點技術在沒有中央權限的情況下運行:管理交易和發行貨幣由網絡共同執行。 BGL Core 是允許使用這種貨幣的開源軟件的名稱。 + +Bitgesell 是比特幣的一個分支,有以下變化:
+* 區塊獎勵 [燃燒率是交易費用的 90%] + ```sh + nFees*0.1 + GetBlockSubsidy() + ``` +* 區塊重量 [比比特幣小 10 倍] + ```sh + <= 400,000 + ``` +* 100% Segwit + ```sh + 消除遺留類型交易的問題 + ``` +* 減半間隔 [bitgetsell 的減半週期為 1 年,而比特幣的減半週期為 4 年] + ```sh + 210000 blocks/4 + ``` +* 區塊補貼 [最大硬幣 = 21,000,000]
+ `210000 blocks/4`
+ `塊的哈希算法是 Keccak (sha-3).`
+ `master 分支定期搭建 (看 [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) 說明) 並經過測試,但不保證完全穩定。`
+ `[標籤](https://github.com/BitgesellOfficial/bitgesell/tags) 定期創建,以指示 BGL Core 的新官方穩定發行版本。`
+ + +### 內置 + +* [C++](#) +* [C](#) +* [Python](#) +* [SourcePawn](#) +* [M4](#) +* [Shell](#) + + + +## 入門 + +https://github.com/BGL-core/gui 存儲庫專門用於 GUI 的開發。它的 master 分支在所有 monotree 存儲庫中都是相同的。發布分支和標籤不存在,所以除非出於開發原因,否則請不要分叉該存儲庫。 + +官方線程: [點擊這裡](https://bitcointalk.org/index.php?topic=5238559.0) + + +### 自動化測試 + +強烈鼓勵開發人員為新代碼編寫 [單元測試](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md),並 +為舊代碼提交新的單元測試。可以編譯和運行單元測試 +(假設它們在配置中沒有被禁用):`make check`。關於跑步的更多細節 +擴展單元測試可以在 [src/test/README.md](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md) 中找到。
+ +還有【回歸和集成測試】(https://github.com/BitgesellOfficial/bitgesell/tree/master/test),寫的 +在 Python 中。
+這些測試可以運行(如果[測試依賴項](https://github.com/BitgesellOfficial/bitgesell/tree/master/test)與: `test/functional/test_runner.py`
+ +CI(持續集成)系統確保每個拉取請求都是為 Windows、Linux 和 macOS 構建的, +並且自動運行單元/健全性測試.
+ + +### 手動質量保證 (QA) 測試 + +更改應由編寫該更改的開發人員以外的其他人進行測試 +代碼。這對於大的或高風險的變化尤其重要。它是有益的 +如果測試更改,則將測試計劃添加到拉取請求描述中 +不直截了當。 + + + +## 路線圖 + +請參閱 [open issues](https://github.com/BitgesellOfficial/bitgesell/issues) 以獲取建議功能(和已知問題)的列表。 + + + +## 貢獻 + +貢獻使開源社區成為學習、啟發和創造的絕佳場所。 **非常感謝您做出的任何貢獻**。 + +1. 分叉項目 +2. 創建你的功能分支 +3. 提交您的更改 +4.推送到分行 +5.打開拉取請求 + + + + +## 執照 + +在 MIT 許可下分發。有關更多信息,請參閱 [許可證](https://github.com/BitgesellOfficial/bitgesell/blob/master/COPYING)。 + + + + +## 接觸 + +Discord - [Bitgesell](https://discord.com/invite/Ubp359vZEF) + +Twitter: [Bitgesell](https://twitter.com/Bitgesell) + +Medium: [Bitgesell](https://bitgesell.medium.com/) + +Facebook: [Bitgesell](https://www.facebook.com/Bitgesell) + + + +## 翻譯 + +可以提交對翻譯的更改以及新的翻譯 +[BGL Core 的 Transifex 頁面](https://www.transifex.com/bitcoin/bitcoin/)。 + +翻譯會定期從 Transifex 中提取並合併到 git 存儲庫中。見 +[翻譯過程](doc/translation_process.md) 了解有關其工作原理的詳細信息。 + +**重要**:我們不接受作為 GitHub 拉取請求的翻譯更改,因為下一個 +從 Transifex 拉取會自動再次覆蓋它們。 + From be3d8b18d796ac3c919aedfacd951eac1a9d1800 Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Fri, 23 Jul 2021 08:44:12 +0530 Subject: [PATCH 07/11] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b9b21455a..0aeb6ca4d3 100644 --- a/README.md +++ b/README.md @@ -72,9 +72,9 @@ BGL is an experimental digital currency that enables instant payments to anyone, 210000 blocks/4 ``` * Block Subsidy [Max coins = 21,000,000]
- `210000 blocks/4`
- `Hashing algorithm for blocks is Keccak (sha-3).`
- `The master branch is regularly built (see [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) for instructions) and tested, but is not guaranteed to be completely stable.`
+ `210000 blocks/4`

+ `Hashing algorithm for blocks is Keccak (sha-3).`

+ `The master branch is regularly built (see [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) for instructions) and tested, but is not guaranteed to be completely stable.`

`[tags](https://github.com/BitgesellOfficial/bitgesell/tags) are created regularly to indicate new official, stable release versions of BGL Core.`
From 6c77f589cfe88721a431940c8bda2038f610caec Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Fri, 23 Jul 2021 08:47:16 +0530 Subject: [PATCH 08/11] Update README-zh.md --- README-zh.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README-zh.md b/README-zh.md index e131dae860..b3be23efd3 100644 --- a/README-zh.md +++ b/README-zh.md @@ -72,9 +72,9 @@ BGL 是一種實驗性數字貨幣,可以向世界上任何地方的任何人 210000 blocks/4 ``` * 區塊補貼 [最大硬幣 = 21,000,000]
- `210000 blocks/4`
- `塊的哈希算法是 Keccak (sha-3).`
- `master 分支定期搭建 (看 [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) 說明) 並經過測試,但不保證完全穩定。`
+ `210000 blocks/4`

+ `塊的哈希算法是 Keccak (sha-3).`

+ `master 分支定期搭建 (看 [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) 說明) 並經過測試,但不保證完全穩定。`

`[標籤](https://github.com/BitgesellOfficial/bitgesell/tags) 定期創建,以指示 BGL Core 的新官方穩定發行版本。`
@@ -103,9 +103,9 @@ https://github.com/BGL-core/gui 存儲庫專門用於 GUI 的開發。它的 mas (假設它們在配置中沒有被禁用):`make check`。關於跑步的更多細節 擴展單元測試可以在 [src/test/README.md](https://github.com/BitgesellOfficial/bitgesell/blob/master/src/test/README.md) 中找到。
-還有【回歸和集成測試】(https://github.com/BitgesellOfficial/bitgesell/tree/master/test),寫的 +還有 [回歸和集成測試](https://github.com/BitgesellOfficial/bitgesell/tree/master/test),寫的 在 Python 中。
-這些測試可以運行(如果[測試依賴項](https://github.com/BitgesellOfficial/bitgesell/tree/master/test)與: `test/functional/test_runner.py`
+這些測試可以運行 [如果[測試依賴項](https://github.com/BitgesellOfficial/bitgesell/tree/master/test) 與: `test/functional/test_runner.py`
CI(持續集成)系統確保每個拉取請求都是為 Windows、Linux 和 macOS 構建的, 並且自動運行單元/健全性測試.
From f73450ec455c9686bfd4ea3f53365ae902980c8a Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Fri, 23 Jul 2021 12:39:23 +0530 Subject: [PATCH 09/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0aeb6ca4d3..b6eb63ca26 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ BGL is an experimental digital currency that enables instant payments to anyone, * Block Subsidy [Max coins = 21,000,000]
`210000 blocks/4`

`Hashing algorithm for blocks is Keccak (sha-3).`

- `The master branch is regularly built (see [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) for instructions) and tested, but is not guaranteed to be completely stable.`

+ `The master branch is regularly built (see` [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) `for instructions) and tested, but is not guaranteed to be completely stable.`

`[tags](https://github.com/BitgesellOfficial/bitgesell/tags) are created regularly to indicate new official, stable release versions of BGL Core.`
From 87e4bd1347589e411bf6be3cad3bfaa52c373999 Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Fri, 23 Jul 2021 12:40:03 +0530 Subject: [PATCH 10/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6eb63ca26..d9e9f80cb4 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ BGL is an experimental digital currency that enables instant payments to anyone, `210000 blocks/4`

`Hashing algorithm for blocks is Keccak (sha-3).`

`The master branch is regularly built (see` [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) `for instructions) and tested, but is not guaranteed to be completely stable.`

- `[tags](https://github.com/BitgesellOfficial/bitgesell/tags) are created regularly to indicate new official, stable release versions of BGL Core.`
+ [tags](https://github.com/BitgesellOfficial/bitgesell/tags) `are created regularly to indicate new official, stable release versions of BGL Core.`
### Built With From aa8999057e848051e0da6bc6e095012f08bdcb2f Mon Sep 17 00:00:00 2001 From: PIYUSH CHOUDHARY <71705154+Developer-piyush@users.noreply.github.com> Date: Sat, 24 Jul 2021 14:12:24 +0530 Subject: [PATCH 11/11] Update README-zh.md --- README-zh.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README-zh.md b/README-zh.md index b3be23efd3..81e73b5015 100644 --- a/README-zh.md +++ b/README-zh.md @@ -74,8 +74,8 @@ BGL 是一種實驗性數字貨幣,可以向世界上任何地方的任何人 * 區塊補貼 [最大硬幣 = 21,000,000]
`210000 blocks/4`

`塊的哈希算法是 Keccak (sha-3).`

- `master 分支定期搭建 (看 [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) 說明) 並經過測試,但不保證完全穩定。`

- `[標籤](https://github.com/BitgesellOfficial/bitgesell/tags) 定期創建,以指示 BGL Core 的新官方穩定發行版本。`
+ `master 分支定期搭建 (看` [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) `說明) 並經過測試,但不保證完全穩定。`

+ [標籤](https://github.com/BitgesellOfficial/bitgesell/tags) `定期創建,以指示 BGL Core 的新官方穩定發行版本。`
### 內置 @@ -91,7 +91,7 @@ BGL 是一種實驗性數字貨幣,可以向世界上任何地方的任何人 ## 入門 -https://github.com/BGL-core/gui 存儲庫專門用於 GUI 的開發。它的 master 分支在所有 monotree 存儲庫中都是相同的。發布分支和標籤不存在,所以除非出於開發原因,否則請不要分叉該存儲庫。 +[GUI](https://github.com/BGL-core/gui) 存儲庫專門用於 GUI 的開發。它的 master 分支在所有 monotree 存儲庫中都是相同的。發布分支和標籤不存在,所以除非出於開發原因,否則請不要分叉該存儲庫。 官方線程: [點擊這裡](https://bitcointalk.org/index.php?topic=5238559.0)