From 446412c2c1835426d9c11063921600672a26dd70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aldo=20Borrero=20Gonza=CC=81lez?= Date: Mon, 25 Jun 2018 22:10:54 +0200 Subject: [PATCH] Fixed derivation path --- accounts/hd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/hd.go b/accounts/hd.go index 9eb27a935e..07f248ced7 100644 --- a/accounts/hd.go +++ b/accounts/hd.go @@ -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.