From 1d3c5b04ac00fbb849534a67312bbe47c8d81785 Mon Sep 17 00:00:00 2001 From: Eirik Ogilvie-Wigley Date: Thu, 31 Oct 2019 15:54:18 -0600 Subject: [PATCH] Release notes for bug fix --- doc/release-notes.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/release-notes.md b/doc/release-notes.md index c4faf2646..eae051421 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -24,6 +24,16 @@ minutes, but this can be configured with the parameter For full details see ZIP 401. +Async-Operations Incorrectly Reporting Success +---------------------------------------------- +We fixed an issue where async-operations were sometimes reporting sucess when +they had actually failed. One way this could occur when trying using +`z_sendmany` to create a transaction spending coinbase funds in a way where +change would be generated (not a valid use of `z_sendmany`). In this case the +async-operation would erroneously report success, and the only way to see that +the transaction had actually failed was to look in the `debug.log` file. Such +operations will now correctly report that they have failed. + Fake chain detection during initial block download --------------------------------------------------