ZIP 308: In `z_getmigrationstatus` change occurrences of the word 'confirmed' to 'finalized'.

Also add "at least" to the definition of finalized.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood 2019-05-10 20:24:38 +01:00
parent 0a202f8c35
commit 5f50fe0fca
1 changed files with 4 additions and 4 deletions

View File

@ -334,9 +334,9 @@ Returns::
"enabled": true|false,
"destination_address": "zaddr",
"unmigrated_amount": nnn.n,
"unconfirmed_migrated_amount": nnn.n,
"confirmed_migrated_amount": nnn.n,
"confirmed_migration_transactions": nnn,
"unfinalized_migrated_amount": nnn.n,
"finalized_migrated_amount": nnn.n,
"finalized_migration_transactions": nnn,
"time_started": ttt, // Unix timestamp
"migration_txids": [txids]
}
@ -365,7 +365,7 @@ The value of ``time_started`` is the earliest Unix timestamp of any known
migration transaction involving this wallet; if there is no such transaction,
then the field is absent.
A transaction is ``confirmed`` iff it has 10 confirmations.
A transaction is ``finalized`` iff it has at least 10 confirmations.
TODO: subject to change, if the recommended number of confirmations changes.