You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
progress of the wallet's scanning historical blocks for transactions
169
169
affecting its balances. (#15730)
170
170
171
+
-`gettransaction` now accepts a third (boolean) argument `verbose`. If
172
+
set to `true`, a new `decoded` field will be added to the response containing
173
+
the decoded transaction. This field is equivalent to RPC `decoderawtransaction`,
174
+
or RPC `getrawtransaction` when `verbose` is passed.
175
+
171
176
-`createwallet` accepts a new `passphrase` parameter. If set, this
172
177
will create the new wallet encrypted with the given passphrase. If
173
178
unset (the default) or set to an empty string, no encryption will be
174
179
used. (#16394)
175
180
181
+
-`getchaintxstats` RPC now returns the additional key of
182
+
`window_final_block_height`.
183
+
176
184
-`getmempoolentry` now provides a `weight` field containing the
177
185
transaction weight as defined in BIP141. (#16647)
178
186
187
+
- The `getnetworkinfo` and `getpeerinfo` commands now contain a new field with decoded network service flags.
188
+
179
189
-`getdescriptorinfo` now returns an additional `checksum` field
180
190
containing the checksum for the unmodified descriptor provided by the
181
191
user (that is, before the descriptor is normalized for the
182
192
`descriptor` field). (#15986)
183
193
194
+
-`joinpsbts` will shuffle the order of the inputs and outputs of the resulting joined psbt.
195
+
Previously inputs and outputs were added in the order that the PSBTs were provided which makes correlating inputs to outputs extremely easy.
196
+
184
197
-`walletcreatefundedpsbt` now signals BIP125 Replace-by-Fee if the
185
198
`-walletrbf` configuration option is set to true. (#15911)
186
199
@@ -192,6 +205,9 @@ GUI changes
192
205
type may be changed by the `-addresstype` configuration option.
193
206
(#15711, #16497)
194
207
208
+
- In 0.18.0 a `./configure` flag was introduced to allow disabling BIP70 support in the GUI (support was enabled by default). In 0.19.0 this flag is now __disabled__ by default.
209
+
- If you want compile Bitcoin Core with BIP70 support in the GUI, you can pass `--enable-bip70` to `./configure`.
0 commit comments