Skip to content
Snippets Groups Projects
Commit 7cfa5d9c authored by Georg Koppen's avatar Georg Koppen
Browse files

Merge remote-tracking branch 'jrand/namecoin-3.3.11'

parents 95c2aff0 2efbd8cb
No related branches found
No related tags found
No related merge requests found
# vim: filetype=yaml sw=2
filename: 'Electrum-NMC-[% c("version") %]-[% c("var/build_id") %].tar.gz'
version: 3.3.8
version: 3.3.11
git_url: https://github.com/namecoin/electrum-nmc.git
# Note: this Git hash has a couple of fixes on top of the 3.3.8 tag, which
# aren't yet in a release tag.
git_hash: 74b87da8f2ddbbf33c23cc8e63b0e1515f427d86
# Note: this Git hash is from the master-3.3.11 branch; the final 3.3.11 isn't
# tagged yet.
git_hash: 463a3a2cb4f5932339a2a1c2d1c2fb40ff049d9d
# TODO: This Git repo uses GPG sigs; we should switch from commit hash to GPG verification.
var:
container:
......
# vim: filetype=yaml sw=2
version: '[% c("abbrev") %]'
git_url: https://github.com/namecoin/StemNS.git
git_hash: '32ed59be344d6bb949faa4a2bf70ae058bfe4d21'
git_hash: '68d437491c0308545e149181768cd98e45c1ac82'
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz'
var:
container:
......
import base64
import urllib.request
def unpause_namecoin():
request = urllib.request.Request("http://127.0.0.1:8336/", data=b'{"id":"stemns","method":"unpausenetwork","params":[]}')
auth = b"user:password"
authb64 = base64.b64encode(auth).decode("utf-8")
request.add_header("Authorization", f"Basic {authb64}")
urllib.request.urlopen(request)
_service_to_command = {
"bit.onion": ['TorBrowser/ncprop279/ncprop279', '--conf=TorBrowser/Data/ncprop279/ncprop279.conf'],
"bit": ['TorBrowser/ncprop279/ncprop279', '--conf=TorBrowser/Data/ncprop279/ncprop279.conf'],
}
_bootstrap_callback = unpause_namecoin
{
"pause_network": true,
"proxy": "socks5:127.0.0.1:9150::",
"rpcpassword": "password",
"rpcport": 8336,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment