From 2267e599c0d5a1965a1eb512be76c84bb012e5fe Mon Sep 17 00:00:00 2001 From: wltsmrz Date: Tue, 18 Mar 2014 17:13:47 -0700 Subject: [PATCH] Update HISTORY --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 95a330bbc2..f45e1a2b6b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,7 @@ + Transactions that err with `telINSUF_FEE_P` will be automatically resubmitted. This error indicates that the `Fee` supplied in the transaction submission request was inadquate. Ideally, the `Fee` is tracked by ripple-lib in real-time, and the resubmitted transaction will most likely succeed. -+ Added Transaction.iff(`Function`). Function expects first argument to be an Error or null, second argument is a boolean which indicates whether or not to proceed with the transaction submission. If an `iff` function is specified, it will be executed prior to every submission of the transaction (including resubmissions). ++ Added Transaction.iff(function(callback) { }). Callback expects first argument to be an Error or null, second argument is a boolean which indicates whether or not to proceed with the transaction submission. If an `iff` function is specified, it will be executed prior to every submission of the transaction (including resubmissions). + Transactions will now emit `presubmit` and `postsubmit` events. They will be emitted before and after a transaction is submitted, respectively.