Bitcoin ABC version 0.21.5 is now available from:
https://download.bitcoinabc.org/0.21.5/
This release includes the following features and fixes:
getinfo
RPC.-regtest
command line
flag, now requires transactions to not violate standard policy by default.
Making the default the same as mainnet makes it easier to test mainnet
behavior on regtest. Be reminded that the testnet still allows non-standard
txs by default and that the policy can be locally adjusted with the
-acceptnonstdtxn
command line flag for both test chains.echo
RPC will now return an internal bug report if exactly 100
arguments are provided.bitcoin-wallet
tool is now available, distributed alongside our usual binaries.
This tool provides a way to create new wallet files and inspect basic information about
a wallet without using any RPCs.generate
RPC method deprecatedgenerate
RPC method has been deprecated and will be fully
removed in v0.22.generate
is only used for testing. The RPC call reaches across multiple
subsystems (wallet and mining), so is deprecated to simplify the
wallet-node interface. Projects that are using generate
for testing
purposes should transition to using the generatetoaddress
call, which
does not require or use the wallet component. Calling generatetoaddress
with an address returned by getnewaddress
gives the same functionality as
the old generate
method.generate
in v0.21, restart bitcoind with the
-deprecatedrpc=generate
configuration.