Skip to content

Commit a54ef0b

Browse files
committed
Revised merged against current Energi stable
1 parent 91ddb57 commit a54ef0b

26 files changed

+92
-313
lines changed

.github/ISSUE_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!--- Remove sections that do not apply -->
22

3-
This issue tracker is only for technical issues related to Dash Core.
3+
This issue tracker is only for technical issues related to Energi Core.
44

5-
General Dash questions and/or support requests and are best directed to the [Dashpay Reddit](https://www.reddit.com/r/dashpay/).
5+
General Energi questions and/or support requests and are best directed through one of the [Community channels](https://www.energi.world/).
66

7-
To report critical security issues, email [email protected] instead of creating Github issues.
7+
To report critical security issues, email [email protected] instead of creating Github issues.
88

99
### Describe the issue
1010

.tx/config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[main]
22
host = https://www.transifex.com
33

4-
[dash.qt-translation-012x]
5-
file_filter = src/qt/locale/dash_<lang>.ts
6-
source_file = src/qt/locale/dash_en.ts
4+
[energi.qt-translation-2x]
5+
file_filter = src/qt/locale/energi_<lang>.ts
6+
source_file = src/qt/locale/energi_en.ts
77
source_lang = en

build-aux/m4/bitcoin_find_bdb48.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AC_DEFUN([BITCOIN_FIND_BDB48],[
1212
bdbpath=X
1313
bdb48path=X
1414
bdbdirlist=
15-
for _vn in 4.8 48 4 5 ''; do
15+
for _vn in 4.8 48 4 5 5.3 ''; do
1616
for _pfx in b lib ''; do
1717
bdbdirlist="$bdbdirlist ${_pfx}db${_vn}"
1818
done
@@ -64,7 +64,7 @@ AC_DEFUN([BITCOIN_FIND_BDB48],[
6464
6565
if test "x$BDB_LIBS" = "x"; then
6666
# TODO: Ideally this could find the library version and make sure it matches the headers being used
67-
for searchlib in db_cxx-4.8 db_cxx; do
67+
for searchlib in db_cxx-4.8 db_cxx db4_cxx; do
6868
AC_CHECK_LIB([$searchlib],[main],[
6969
BDB_LIBS="-l${searchlib}"
7070
break

contrib/debian/examples/dash.conf

-145
This file was deleted.

contrib/debian/examples/energi.conf

+22-1
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,30 @@
6767
# This option can be specified multiple times (default: bind to all interfaces)
6868
#rpcbind=<addr>
6969

70-
# You must set rpcuser and rpcpassword to secure the JSON-RPC api
70+
# If no rpcpassword is set, rpc cookie auth is sought. The default `-rpccookiefile` name
71+
# is .cookie and found in the `-datadir` being used for bitcoind. This option is typically used
72+
# when the server and client are run as the same user.
73+
#
74+
# If not, you must set rpcuser and rpcpassword to secure the JSON-RPC api. The first
75+
# method(DEPRECATED) is to set this pair for the server and client:
7176
#rpcuser=Ulysseys
7277
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
78+
#
79+
# The second method `rpcauth` can be added to server startup argument. It is set at intialization time
80+
# using the output from the script in share/rpcuser/rpcuser.py after providing a username:
81+
#
82+
# ./share/rpcuser/rpcuser.py alice
83+
# String to be appended to bitcoin.conf:
84+
# rpcauth=alice:f7efda5c189b999524f151318c0c86$d5b51b3beffbc02b724e5d095828e0bc8b2456e9ac8757ae3211a5d9b16a22ae
85+
# Your password:
86+
# DONT_USE_THIS_YOU_WILL_GET_ROBBED_8ak1gI25KFTvjovL3gAM967mies3E=
87+
#
88+
# On client-side, you add the normal user/password pair to send commands:
89+
#rpcuser=alice
90+
#rpcpassword=DONT_USE_THIS_YOU_WILL_GET_ROBBED_8ak1gI25KFTvjovL3gAM967mies3E=
91+
#
92+
# You can even add multiple entries of these to the server conf file, and client can use any of them:
93+
# rpcauth=bob:b2dd077cb54591a2f3139e69a897ac$4e71f08d48b4347cf8eff3815c0e25ae2e9a4340474079f55705f40574f4ec99
7394

7495
# How many seconds Energi Core will wait for a complete RPC HTTP request.
7596
# after the HTTP connection is established.

contrib/debian/manpages/energi-cli.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ENERGI-CLI "1" "June 2016" "energi-cli 0.12"
1+
.TH ENERGI-CLI "1" "December 2018" "energi-cli 2.0"
22
.SH NAME
33
energi-cli \- a remote procedure call client for Energi Core.
44
.SH SYNOPSIS

contrib/debian/manpages/energi-qt.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ENERGI-QT "1" "June 2016" "energi-qt 0.12"
1+
.TH ENERGI-QT "1" "December 2018" "energi-qt 2.0"
22
.SH NAME
33
energi-qt \- peer-to-peer network based digital currency
44
.SH DESCRIPTION

contrib/debian/manpages/energi.conf.5

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ENERGI.CONF "5" "June 2016" "energi.conf 0.12"
1+
.TH ENERGI.CONF "5" "December 2018" "energi.conf 2.0"
22
.SH NAME
33
energi.conf \- Energi Core configuration file
44
.SH SYNOPSIS

contrib/debian/manpages/energid.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ENERGID "1" "June 2016" "energid 0.12"
1+
.TH ENERGID "1" "December 2018" "energid 2.0"
22
.SH NAME
33
energid \- peer-to-peer network based digital currency
44
.SH SYNOPSIS

contrib/energi-qt.pro

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ FORMS += \
99
../src/qt/forms/helpmessagedialog.ui \
1010
../src/qt/forms/intro.ui \
1111
../src/qt/forms/masternodelist.ui \
12+
../src/qt/forms/qrdialog.ui \
1213
../src/qt/forms/openuridialog.ui \
1314
../src/qt/forms/optionsdialog.ui \
1415
../src/qt/forms/overviewpage.ui \

contrib/init/energid.openrcconf

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#BITCOIND_NICE=0
2424

2525
# Additional options (avoid -conf and -datadir, use flags above)
26-
BITCOIND_OPTS="-disablewallet"
26+
#BITCOIND_OPTS=""
2727

2828
# The timeout in seconds OpenRC will wait for bitcoind to terminate
2929
# after a SIGTERM has been raised.

depends/packages/native_biplist.mk

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ $(package)_download_path=https://bitbucket.org/wooster/biplist/downloads
44
$(package)_file_name=biplist-$($(package)_version).tar.gz
55
$(package)_sha256_hash=4c0549764c5fe50b28042ec21aa2e14fe1a2224e239a1dae77d9e7f3932aa4c6
66
$(package)_install_libdir=$(build_prefix)/lib/python/dist-packages
7-
$(package)_patches=sorted_list.patch
8-
9-
define $(package)_preprocess_cmds
10-
patch -p1 < $($(package)_patch_dir)/sorted_list.patch
11-
endef
127

138
define $(package)_build_cmds
149
python setup.py build

depends/packages/native_mac_alias.mk

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ $(package)_download_path=https://github.com/al45tair/mac_alias/archive/
44
$(package)_file_name=v$($(package)_version).tar.gz
55
$(package)_sha256_hash=6f606d3b6bccd2112aeabf1a063f5b5ece87005a5d7e97c8faca23b916e88838
66
$(package)_install_libdir=$(build_prefix)/lib/python/dist-packages
7-
$(package)_patches=python3.patch
8-
9-
define $(package)_preprocess_cmds
10-
patch -p1 < $($(package)_patch_dir)/python3.patch
11-
endef
127

138
define $(package)_build_cmds
149
python3 setup.py build

depends/patches/native_biplist/sorted_list.patch

-29
This file was deleted.

depends/patches/native_mac_alias/python3.patch

-72
This file was deleted.

0 commit comments

Comments
 (0)