Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pss/client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"context"
"flag"
"fmt"
"github.com/ethersphere/swarm/pss/crypto"
"math/rand"
"os"
"testing"
Expand Down Expand Up @@ -48,7 +49,7 @@ type protoCtrl struct {
var (
debugdebugflag = flag.Bool("vv", false, "veryverbose")
debugflag = flag.Bool("v", false, "verbose")
cryptoUtils pss.CryptoUtils
cryptoUtils crypto.CryptoUtils
// custom logging
psslogmain log.Logger
pssprotocols map[string]*protoCtrl
Expand Down Expand Up @@ -76,7 +77,7 @@ func init() {
h := log.CallerFileHandler(hf)
log.Root().SetHandler(h)

cryptoUtils = pss.NewCryptoUtils()
cryptoUtils = crypto.NewCryptoUtils()

pssprotocols = make(map[string]*protoCtrl)
}
Expand Down
104 changes: 0 additions & 104 deletions pss/crypto.go

This file was deleted.

Loading