Change go-iden3 dependencies to vocdoni/go-iden3

New iden3 merkleTree implementation is not longer compatible. Until new
documentation is availabl and vocdoni code is adapted, use frozen
version of go-iden3 implementation.
This commit is contained in:
p4u
2018-12-28 14:52:55 +01:00
parent 4bd4f33f43
commit a503c6555e
3 changed files with 6 additions and 6 deletions

View File

@@ -1,2 +1,2 @@
# dVote-process
Library to work with the creation and management of voting processes
Library to work with the creation and management of vocdoni census

View File

@@ -6,7 +6,7 @@ import (
"net/http"
"time"
"log"
"github.com/vocdoni/dvote-process/tree"
"github.com/vocdoni/dvote-census/tree"
)
var T tree.Tree

View File

@@ -1,10 +1,10 @@
package tree
import (
"github.com/iden3/go-iden3/db"
"github.com/iden3/go-iden3/merkletree"
mkcore "github.com/iden3/go-iden3/core"
common3 "github.com/iden3/go-iden3/common"
"github.com/vocdoni/go-iden3/db"
"github.com/vocdoni/go-iden3/merkletree"
mkcore "github.com/vocdoni/go-iden3/core"
common3 "github.com/vocdoni/go-iden3/common"
"os/user"
)