Skip to content

Commit

Permalink
bump version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Oct 16, 2024
1 parent 2be6fe0 commit 6654dec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/MixinNetwork/tip/signer"
"github.com/MixinNetwork/tip/store"
"github.com/drand/kyber/pairing/bn256"
"github.com/drand/kyber/sign/bls"
"github.com/drand/kyber/sign/bdn"
"github.com/drand/kyber/util/random"
"github.com/fox-one/mixin-sdk-go"
"github.com/urfave/cli/v2"
Expand All @@ -26,7 +26,7 @@ func main() {
app := &cli.App{
Name: "tip",
Usage: "TIP (Throttled Identity PIN) is a decentralized key custodian.",
Version: "0.2.5",
Version: "0.3.0",
EnableBashCompletion: true,
Flags: []cli.Flag{
&cli.StringFlag{
Expand Down Expand Up @@ -204,7 +204,7 @@ func genKey(c *cli.Context) error {
point := suite.Point().Mul(scalar, nil)

msg := []byte("tip")
scheme := bls.NewSchemeOnG1(suite)
scheme := bdn.NewSchemeOnG1(suite)
sig, err := scheme.Sign(scalar, msg)
if err != nil {
return err
Expand Down

0 comments on commit 6654dec

Please sign in to comment.