Skip to content

Commit

Permalink
fix: fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikRevich committed Oct 2, 2024
1 parent e81075c commit adc3744
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions wasmsdk/auth_txn.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,7 @@ func registerZauthServer(serverAddr string) {
}

func zauthRetrieveKey(clientID, peerPublicKey, serverAddr, token string) (string, error) {
fmt.Println("retrieveing")

d, err := zcncore.CallZauthRetreiveKey(serverAddr, token, clientID, peerPublicKey)

fmt.Println(d, err)

return d, err
return zcncore.CallZauthRetreiveKey(serverAddr, token, clientID, peerPublicKey)
}

// zvaultNewWallet generates new wallet
Expand Down

0 comments on commit adc3744

Please sign in to comment.