Skip to content

Commit 882f76e

Browse files
committed
hard fork module
1 parent ebc53a4 commit 882f76e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+199
-153
lines changed

blame/policy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
mapset "github.com/deckarep/golang-set"
99
"github.com/libp2p/go-libp2p/core/peer"
1010

11-
"gitlab.com/thorchain/tss/go-tss/conversion"
12-
"gitlab.com/thorchain/tss/go-tss/messages"
11+
"github.com/zeta-chain/go-tss/conversion"
12+
"github.com/zeta-chain/go-tss/messages"
1313
)
1414

1515
func (m *Manager) tssTimeoutBlame(lastMessageType string, partyIDMap map[string]*btss.PartyID) ([]string, error) {

blame/policy_helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package blame
22

3-
import "gitlab.com/thorchain/tss/go-tss/conversion"
3+
import "github.com/zeta-chain/go-tss/conversion"
44

55
// GetBlamePubKeysInList returns the nodes public key who are in the peer list
66
func (m *Manager) getBlamePubKeysInList(peers []string) ([]string, error) {

blame/policy_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"github.com/libp2p/go-libp2p/core/peer"
1212
. "gopkg.in/check.v1"
1313

14-
"gitlab.com/thorchain/tss/go-tss/conversion"
15-
"gitlab.com/thorchain/tss/go-tss/messages"
14+
"github.com/zeta-chain/go-tss/conversion"
15+
"github.com/zeta-chain/go-tss/messages"
1616
)
1717

1818
var (

blame/round_mgr.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package blame
33
import (
44
"sync"
55

6-
"gitlab.com/thorchain/tss/go-tss/messages"
6+
"github.com/zeta-chain/go-tss/messages"
77
)
88

99
type RoundInfo struct {

blame/round_mgr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package blame
33
import (
44
. "gopkg.in/check.v1"
55

6-
"gitlab.com/thorchain/tss/go-tss/messages"
6+
"github.com/zeta-chain/go-tss/messages"
77
)
88

99
type RoundMgrSuite struct{}

cmd/tss/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
golog "github.com/ipfs/go-log"
1515
"github.com/libp2p/go-libp2p/core/peer"
1616

17-
"gitlab.com/thorchain/tss/go-tss/common"
18-
"gitlab.com/thorchain/tss/go-tss/conversion"
19-
"gitlab.com/thorchain/tss/go-tss/p2p"
20-
"gitlab.com/thorchain/tss/go-tss/tss"
17+
"github.com/zeta-chain/go-tss/common"
18+
"github.com/zeta-chain/go-tss/conversion"
19+
"github.com/zeta-chain/go-tss/p2p"
20+
"github.com/zeta-chain/go-tss/tss"
2121
)
2222

2323
var (

cmd/tss/mock_tss_server.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"errors"
55

66
"github.com/libp2p/go-libp2p/core/peer"
7-
"gitlab.com/thorchain/tss/go-tss/blame"
8-
"gitlab.com/thorchain/tss/go-tss/common"
9-
"gitlab.com/thorchain/tss/go-tss/conversion"
10-
"gitlab.com/thorchain/tss/go-tss/keygen"
11-
"gitlab.com/thorchain/tss/go-tss/keysign"
7+
"github.com/zeta-chain/go-tss/blame"
8+
"github.com/zeta-chain/go-tss/common"
9+
"github.com/zeta-chain/go-tss/conversion"
10+
"github.com/zeta-chain/go-tss/keygen"
11+
"github.com/zeta-chain/go-tss/keysign"
1212
)
1313

1414
type MockTssServer struct {

cmd/tss/tss_http.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"github.com/rs/zerolog"
1414
"github.com/rs/zerolog/log"
1515

16-
"gitlab.com/thorchain/tss/go-tss/keygen"
17-
"gitlab.com/thorchain/tss/go-tss/keysign"
18-
"gitlab.com/thorchain/tss/go-tss/tss"
16+
"github.com/zeta-chain/go-tss/keygen"
17+
"github.com/zeta-chain/go-tss/keysign"
18+
"github.com/zeta-chain/go-tss/tss"
1919
)
2020

2121
// TssHttpServer provide http endpoint for tss server

cmd/tss/tss_http_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
. "gopkg.in/check.v1"
1313

14-
"gitlab.com/thorchain/tss/go-tss/keygen"
14+
"github.com/zeta-chain/go-tss/keygen"
1515
)
1616

1717
func TestPackage(t *testing.T) { TestingT(t) }

common/local_cache_item.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import (
44
"sync"
55

6-
"gitlab.com/thorchain/tss/go-tss/messages"
6+
"github.com/zeta-chain/go-tss/messages"
77
)
88

99
// LocalCacheItem used to cache the unconfirmed broadcast message

0 commit comments

Comments
 (0)