Ran code cleanup from goland (#6064)

* Ran code cleanup from goland

* Typo
This commit is contained in:
terence tsao
2020-05-31 13:08:36 -07:00
committed by GitHub
parent 49a0d3caf0
commit 6e3b78b99e
29 changed files with 37 additions and 37 deletions

View File

@@ -2,11 +2,11 @@ package main
import (
"flag"
"github.com/prysmaticlabs/prysm/tools/unencrypted-keys-gen/keygen"
"log"
"os"
"github.com/prysmaticlabs/prysm/shared/interop"
"github.com/prysmaticlabs/prysm/tools/unencrypted-keys-gen/keygen"
)
var (
@@ -66,4 +66,3 @@ func generateUnencryptedKeys(startIndex uint64) *keygen.UnencryptedKeysContainer
}
return ctnr
}

View File

@@ -3,9 +3,10 @@ package main
import (
"bytes"
"encoding/json"
"github.com/prysmaticlabs/prysm/tools/unencrypted-keys-gen/keygen"
"reflect"
"testing"
"github.com/prysmaticlabs/prysm/tools/unencrypted-keys-gen/keygen"
)
func TestSavesUnencryptedKeys(t *testing.T) {