Merge branch 'master' of sofi/cwtch into master
the build was successful Details

This commit is contained in:
Dan Ballard 2019-12-02 12:57:20 -08:00 committed by Gogs
commit 1f190f4398
2 changed files with 3 additions and 3 deletions

View File

@ -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)
@ -94,7 +94,7 @@ func (ac *applicationCore) CreatePeer(name string, password string) (*model.Prof
// CreatePeer creates a new Peer with the given name and required accessories (eventbus, storage, protocol engine)
func (app *application) CreatePeer(name string, password string) {
profile, err := app.applicationCore.CreatePeer(name, password)
profile, err := app.applicationCore.CreatePeer(name)
if err != nil {
app.appBus.Publish(event.NewEventList(event.PeerError, event.Error, err.Error()))
return

View File

@ -81,7 +81,7 @@ func (as *applicationService) handleEvent(ev *event.Event) {
func (as *applicationService) createPeer(name, password string) {
log.Infof("app Service create peer %v %v\n", name, password)
profile, err := as.applicationCore.CreatePeer(name, password)
profile, err := as.applicationCore.CreatePeer(name)
as.eventBuses[profile.Onion] = event.IPCEventManagerFrom(as.bridge, profile.Onion, as.eventBuses[profile.Onion])
if err != nil {
log.Errorf("Could not create Peer: %v\n", err)