[DOC] Translate documents & fix some typo (#2952)

*  add files for translation

*  WIP translation

* finish to translate coinbase_maturity.md && fix some typo to understand easily

*  add doc link in coinbase_maturity.md

*  remove wrong file

* Fix typo and unecessary word
This commit is contained in:
Quentin Le Sceller
2019-07-18 11:42:34 +02:00
committed by GitHub
parent a1c7f304bd
commit 121e6c8c46
3 changed files with 136 additions and 3 deletions
+2 -2
View File
@@ -54,7 +54,7 @@ impl TxHashSetHandler {
Ok(TxHashSetNode::get_last_n_output(w(&self.chain)?, distance))
}
// gets last n outputs inserted in to the tree
// gets last n rangeproofs inserted in to the tree
fn get_last_n_rangeproof(&self, distance: u64) -> Result<Vec<TxHashSetNode>, Error> {
Ok(TxHashSetNode::get_last_n_rangeproof(
w(&self.chain)?,
@@ -62,7 +62,7 @@ impl TxHashSetHandler {
))
}
// gets last n outputs inserted in to the tree
// gets last n kernels inserted in to the tree
fn get_last_n_kernel(&self, distance: u64) -> Result<Vec<TxHashSetNode>, Error> {
Ok(TxHashSetNode::get_last_n_kernel(w(&self.chain)?, distance))
}