We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I follow the Readme instructions and a simple code like the one below failed with "undefined: s256k1"
package main
import "fmt" import "github.com/binance-chain/tss-lib/tss"
func main() { tss.SetCurve(s256k1.S256()) }
The text was updated successfully, but these errors were encountered:
The README is outdated
tss.SetCurve has been marked as deprecated
tss.SetCurve
you should pass the curve when calling tss.NewParameters
tss.NewParameters
check #185
Sorry, something went wrong.
Thanks for the update!
import ( s256k1 "github.com/btcsuite/btcd/btcec" )
No branches or pull requests
I follow the Readme instructions and a simple code like the one below failed with "undefined: s256k1"
package main
import "fmt"
import "github.com/binance-chain/tss-lib/tss"
func main() {
tss.SetCurve(s256k1.S256())
}
The text was updated successfully, but these errors were encountered: