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
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE.md
+3-7
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,9 @@
1
-
<!-- This issue tracker is only for technical issues related to Bitcoin Core.
1
+
<!-- This issue tracker is only for technical issues related to Bitweb Core.
2
2
3
-
General bitcoin questions and/or support requests are best directed to the Bitcoin StackExchange at https://bitcoin.stackexchange.com.
4
-
5
-
For reporting security issues, please read instructions at https://bitcoincore.org/en/contact/.
3
+
For reporting security issues, please read instructions at https://github.com/bitweb-project/bitweb/issues/.
6
4
7
5
If the node is "stuck" during sync or giving "block checksum mismatch" errors, please ensure your hardware is stable by running memtest and observe CPU temperature with a load-test tool such as linpack before creating an issue!
8
6
9
-
Any report, issue or feature request related to the GUI should be reported at
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+3-5
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,9 @@ assignees: ''
7
7
8
8
---
9
9
10
-
<!-- This issue tracker is only for technical issues related to Bitcoin Core.
10
+
<!-- This issue tracker is only for technical issues related to Bitweb Core.
11
11
12
-
General bitcoin questions and/or support requests are best directed to the Bitcoin StackExchange at https://bitcoin.stackexchange.com.
13
-
14
-
For reporting security issues, please read instructions at https://bitcoincore.org/en/contact/.
12
+
For reporting security issues, please use https://github.com/bitweb-project/bitweb/issues
15
13
16
14
If the node is "stuck" during sync or giving "block checksum mismatch" errors, please ensure your hardware is stable by running memtest and observe CPU temperature with a load-test tool such as linpack before creating an issue! -->
17
15
@@ -31,7 +29,7 @@ If the node is "stuck" during sync or giving "block checksum mismatch" errors, p
31
29
32
30
**System information**
33
31
34
-
<!-- What version of Bitcoin Core are you using, where did you get it (website, self-compiled, etc)? -->
32
+
<!-- What version of Bitweb Core are you using, where did you get it (website, self-compiled, etc)? -->
35
33
36
34
<!-- What type of machine are you observing the error on (OS/CPU and disk type)? -->
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/good_first_issue.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ assignees: ''
15
15
16
16
#### Useful skills:
17
17
18
-
<!-- (For example, “C++11 std::thread”, “Qt5 GUI and async GUI design” or “basic understanding of Bitcoin mining and the Bitcoin Core RPC interface”.) -->
18
+
<!-- (For example, “C++11 std::thread”, “Qt5 GUI and async GUI design” or “basic understanding of Bitcoin/Bitweb mining and the Bitcoin Core/Bitweb Core RPC interface”.) -->
19
19
20
20
#### Want to work on this issue?
21
21
22
-
For guidance on contributing, please read [CONTRIBUTING.md](https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md) before opening your pull request.
22
+
For guidance on contributing, please read [CONTRIBUTING.md](https://github.com/bitweb-project/bitweb/blob/master/CONTRIBUTING.md) before opening your pull request.
To build Bitcoin Core with the GUI, a static build of Qt is required.
31
+
To build Bitweb Core with the GUI, a static build of Qt is required.
32
32
33
33
1. Download a single ZIP archive of Qt source code from https://download.qt.io/official_releases/qt/ (e.g., [`qt-everywhere-opensource-src-5.15.5.zip`](https://download.qt.io/official_releases/qt/5.15/5.15.5/single/qt-everywhere-opensource-src-5.15.5.zip)), and expand it into a dedicated folder. The following instructions assume that this folder is `C:\dev\qt-source`.
34
34
@@ -44,7 +44,7 @@ nmake install
44
44
45
45
One could speed up building with [`jom`](https://wiki.qt.io/Jom), a replacement for `nmake` which makes use of all CPU cores.
46
46
47
-
To build Bitcoin Core without Qt, unload or disable the `bitcoin-qt`, `libbitcoin_qt` and `test_bitcoin-qt` projects.
47
+
To build Bitweb Core without Qt, unload or disable the `bitcoin-qt`, `libbitcoin_qt` and `test_bitcoin-qt` projects.
48
48
49
49
50
50
Building
@@ -67,12 +67,12 @@ Alternatively, open the `build_msvc/bitcoin.sln` file in Visual Studio.
67
67
68
68
Security
69
69
---------------------
70
-
[Base address randomization](https://docs.microsoft.com/en-us/cpp/build/reference/dynamicbase-use-address-space-layout-randomization?view=msvc-160) is used to make Bitcoin Core more secure. When building Bitcoin using the `build_msvc` process base address randomization can be disabled by editing `common.init.vcproj` to change `RandomizedBaseAddress` from `true` to `false` and then rebuilding the project.
70
+
[Base address randomization](https://docs.microsoft.com/en-us/cpp/build/reference/dynamicbase-use-address-space-layout-randomization?view=msvc-160) is used to make Bitweb Core more secure. When building Bitcoin using the `build_msvc` process base address randomization can be disabled by editing `common.init.vcproj` to change `RandomizedBaseAddress` from `true` to `false` and then rebuilding the project.
71
71
72
72
To check if `bitcoind` has `RandomizedBaseAddress` enabled or disabled run
73
73
74
74
```
75
-
.\dumpbin.exe /headers src/bitcoind.exe
75
+
.\dumpbin.exe /headers src/bitwebd.exe
76
76
```
77
77
78
78
If is it enabled then in the output `Dynamic base` will be listed in the `DLL characteristics` under `OPTIONAL HEADER VALUES` as shown below
0 commit comments