From f136089ca92ad12ea86e842955027fd68382ba35 Mon Sep 17 00:00:00 2001 From: Oscar Guindzberg Date: Tue, 23 Apr 2019 13:12:57 -0300 Subject: [PATCH 1/2] Fix typo. --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index bfb9ffcd4..0d79eab29 100644 --- a/release-notes.md +++ b/release-notes.md @@ -49,7 +49,7 @@ Segregated witness: * `DeterministicKeyChain` now has an output script type, which determines the type of addresses derived. * Made the `BitcoinURI` class aware of native segwit addresses. * New `TransactionWitness` class that holds the script witnesses (thanks Nicolas Dorier, Oscar Guindzberg, Fabrice Drouin). -* Use `Transaction.getTdId()` or `getWTxId()` rather than `getHash()` and `getHashAsString()`. +* Use `Transaction.getTxId()` or `getWTxId()` rather than `getHash()` and `getHashAsString()`. * Support for new extended public keys: `zpub` (Mainnet) and `vpub` (Testnet) for `P2WPKH` chains via `Wallet.fromWatchingKeyB58()`. * `KeyChainGroup` now manages multiple active keychains (sharing a common seed). The newest active keychain is the default. All other active keychains are meant as fallback for if a sender doesn't understand a certain new script type. From 36654f22aa1babd69ac4817ce88d264978c5268b Mon Sep 17 00:00:00 2001 From: Oscar Guindzberg Date: Tue, 23 Apr 2019 13:21:43 -0300 Subject: [PATCH 2/2] Fix typo. --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index 0d79eab29..c8b520fea 100644 --- a/release-notes.md +++ b/release-notes.md @@ -80,7 +80,7 @@ Persistence (Protobuf): you haven't used stateful transaction signers, you can switch back and forth bitcoinj 0.14 and 0.15. * A new `ScriptWitness` message is stored with `TransactionInputs`. It's currently not terribly useful, since after braodcasting of transactions it isn't needed by bitcoinj and script execution isn't implemented for segwit yet. - If you switch from 0.15 to 0.15 and you've got unbroadcasted witness transactions in your wallet, those will not + If you switch from 0.15 to 0.14 and you've got unbroadcasted witness transactions in your wallet, those will not be accepted by the network any more. * The buffer size used for the saving of wallets can now be specified using `WalletProtobufSerializer.setWalletWriteBufferSize()` (thanks Justas Dobiliauskas).