Post
Topic
Board Bitcoin Technical Support
Merits 5 from 2 users
Re: Run a Bitcoin Testnet 4 node
by
mocacinno
on 14/05/2024, 14:04:28 UTC
⭐ Merited by LoyceV (4) ,seoincorporation (1)
How to do this, on sles 15 sp4

Part 1: pull the pull request

Code:
git clone https://github.com/bitcoin/bitcoin.git
cd bitcoin
git fetch origin pull/29775/head:pr-29775
git checkout pr-29775
git merge origin/master

at this point, you'll see a merge conflict... You'll need to edit src/ini.cpp manually (open it with an editor and look for <<<<<<<)

then, after resolving the merge conflict

Code:
git add src/init.cpp
git merge --continue

Now, you can build Smiley