Fixed derivation path

This commit is contained in:
Aldo Borrero González 2018-06-25 22:10:54 +02:00
parent 3355e8130c
commit 446412c2c1

View file

@ -32,7 +32,7 @@ var DefaultRootDerivationPath = DerivationPath{0x80000000 + 44, 0x80000000 + 108
// DefaultBaseDerivationPath is the base path from which custom derivation endpoints
// are incremented. As such, the first account will be at m/44'/108'/0'/0, the second
// at m/44'/108'/0'/1, etc.
var DefaultBaseDerivationPath = DerivationPath{0x80000000 + 44, 0x80000000 + 108, 0x80000000 + 0, 0}
var DefaultBaseDerivationPath = DerivationPath{0x80000000 + 44, 0x80000000 + 108, 0x80000000 + 0, 0, 0}
// DerivationPath represents the computer friendly version of a hierarchical
// deterministic wallet account derivation path.