mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-06 02:43:49 +00:00
Index column changed to Path
This commit is contained in:
@@ -223,7 +223,7 @@
|
||||
<thead>
|
||||
<th>
|
||||
<div class="input-group">
|
||||
Index
|
||||
Path
|
||||
<button class="index-toggle">Toggle</button>
|
||||
</div>
|
||||
</th>
|
||||
@@ -14907,7 +14907,8 @@ var Mnemonic = function(language) {
|
||||
var addressCell = row.find(".address span");
|
||||
var privkeyCell = row.find(".privkey span");
|
||||
// Content
|
||||
indexCell.text(index);
|
||||
var indexText = derivationPath + "/" + index;
|
||||
indexCell.text(indexText);
|
||||
addressCell.text(address);
|
||||
privkeyCell.text(privkey);
|
||||
// Visibility
|
||||
|
||||
@@ -219,7 +219,7 @@
|
||||
<thead>
|
||||
<th>
|
||||
<div class="input-group">
|
||||
Index
|
||||
Path
|
||||
<button class="index-toggle">Toggle</button>
|
||||
</div>
|
||||
</th>
|
||||
|
||||
@@ -325,7 +325,8 @@
|
||||
var addressCell = row.find(".address span");
|
||||
var privkeyCell = row.find(".privkey span");
|
||||
// Content
|
||||
indexCell.text(index);
|
||||
var indexText = derivationPath + "/" + index;
|
||||
indexCell.text(indexText);
|
||||
addressCell.text(address);
|
||||
privkeyCell.text(privkey);
|
||||
// Visibility
|
||||
|
||||
Reference in New Issue
Block a user