Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #3

Open
wants to merge 30 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e5c6f93
Improve Graphene decode rates by padding IBLT (#1426)
bissias Dec 17, 2018
f231d56
Add Graphene specification v1.0 (#1522)
sickpig Dec 17, 2018
b1890a6
Remove a useless assert in PruneBlockIndexCandidates()
sickpig Dec 18, 2018
18ba7f4
Switch ctor on earlier in the init process if we are on the BCH chain
sickpig Dec 19, 2018
34d548a
Add a new parameter to define the duration of Graphene and Thinblock …
sickpig Dec 19, 2018
57276b6
ppa update (#1529)
soeren-b-c Dec 19, 2018
6778995
It seems we are ready to release final BUcash 1.5.1 (#1535)
sickpig Dec 19, 2018
016285d
merge dev to release for 1.6.0.0
gandrewstone Apr 23, 2019
6163554
Fix Qt's rcc determinism for depends/gitian (ARM) (#1696)
sickpig Apr 24, 2019
5ecf36b
Removed file with a mispelled name
sickpig Jun 11, 2019
68d87c9
Merge pull request #1784 from sickpig/remove-stale-file
gandrewstone Jun 19, 2019
5a37149
update release from dev for 1.6.0.1
gandrewstone Jul 29, 2019
e455c77
Merge branch 'dev' into release
gandrewstone Oct 10, 2019
eb264e6
Merge branch 'dev' into release
gandrewstone Oct 11, 2019
d164aa6
Updated RPC getblockstats help message
Oct 11, 2019
984a540
Add missing message types to allNetMessages[]
ptschip Oct 16, 2019
ecc4be8
Merge pull request #1981 from poldridge/release
gandrewstone Oct 18, 2019
e654bcd
Merge pull request #1986 from ptschip/dev_messages
gandrewstone Oct 18, 2019
8d98da0
Merge pull request #1987 from ptschip/dev_pruning
gandrewstone Oct 23, 2019
0bb1310
Use the correct build status report icon for the release branch
sickpig Nov 7, 2019
581d205
Merge pull request #2015 from sickpig/fix-build-icon
gandrewstone Nov 13, 2019
a243725
Merge tag 'BCHunlimited1.8.0.0' into release
gandrewstone Apr 17, 2020
2ecad62
Activate Repo Lockdown bot on GitHub Legacy repository.
sickpig Jul 7, 2020
c795015
Merge branch 'app-repolockdown-github-conf-release' into 'release'
sickpig Jul 7, 2020
e10e52c
Merge branch 'dev' into release
gandrewstone Aug 19, 2020
d528564
Merge tag 'BCHunlimited1.9.0.0' into release
gandrewstone Aug 24, 2020
8aea282
Merge tag 'BCHunlimited1.9.0.0' into HEAD
gandrewstone Aug 24, 2020
813a708
Merge branch 'release' of gitlab.com:bitcoinunlimited/BCHUnlimited in…
gandrewstone Aug 24, 2020
11eca3a
merge new release 1.9.1 into release branch
gandrewstone Feb 17, 2021
05de381
Merge branch 'dev' into release
gandrewstone Mar 29, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/rpc/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1919,8 +1919,7 @@ static UniValue getblockstats(const UniValue &params, bool fHelp)
{
throw std::runtime_error(
"getblockstats hash_or_height ( stats )\n"
"\nCompute per block statistics for a given window. All amounts are in satoshis.\n"
"It won't work for some heights with pruning.\n"
"\nCompute per block statistics for a given window. It won't work for some heights with pruning.\n"
"\nArguments:\n"
"1. \"hash_or_height\" (string or numeric, required) The block hash or height of the target block\n"
"2. \"stats\" (array, optional) Values to plot, by default all values (see result below)\n"
Expand Down