diff --git a/doc/release-notes.md b/doc/release-notes.md index e8f7fb7b5..3f2300482 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,13 +1,14 @@ Bitcoin ABC version 0.19.7 is now available from: This release includes the following features and fixes: - `-includeconf=` can be used to include additional configuration files. Only works inside the `bitcoin.conf` file, not inside included files or from command-line. Multiple files may be included. Can be disabled from command- line via `-noincludeconf`. Note that multi-argument commands like `-includeconf` will override preceding `-noincludeconf`, i.e. noincludeconf=1 includeconf=relative.conf as bitcoin.conf will still include `relative.conf`. + - The `createrawtransaction` RPC will now accept an array or dictionary (kept for compatibility) for the `outputs` parameter. This means the order of transaction outputs can be specified by the client. diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 64a43da50..079ebda5d 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1,1358 +1,1368 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include