From eff95941968b4c5ca5866ed8be75ed2c51ff3c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Celi?= Date: Fri, 15 Nov 2019 21:54:44 +0800 Subject: [PATCH] Fix signature of function --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index b516468..0c6f54d 100644 --- a/app/app.go +++ b/app/app.go @@ -73,7 +73,7 @@ func NewApp(acn connectivity.ACN, appDirectory string) Application { } // CreatePeer creates a new Peer with a given name and core required accessories (eventbus) -func (ac *applicationCore) CreatePeer(name string, password string) (*model.Profile, error) { +func (ac *applicationCore) CreatePeer(name string) (*model.Profile, error) { log.Debugf("CreatePeer(%v)\n", name) profile := storage.NewProfile(name)