Skip to content

Commit

Permalink
Merge branch 'track-subnet-refactor' into remove-redundancies2
Browse files Browse the repository at this point in the history
Signed-off-by: sukantoraymond <[email protected]>
  • Loading branch information
sukantoraymond authored Oct 9, 2024
2 parents aa73b86 + bb7d561 commit ccb556f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pkg/subnet/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,19 @@ import (
"encoding/json"
"errors"
"fmt"
"os"
"path/filepath"
"unicode"

"github.com/ava-labs/avalanche-cli/pkg/application"
"github.com/ava-labs/avalanche-cli/pkg/constants"
"github.com/ava-labs/avalanche-cli/pkg/key"
"github.com/ava-labs/avalanche-cli/pkg/models"
"github.com/ava-labs/avalanche-cli/pkg/utils"
"os"
"path/filepath"
"unicode"
)

var (
errIllegalNameCharacter = errors.New(
"illegal name character: only letters, no special characters allowed")
)
var errIllegalNameCharacter = errors.New(
"illegal name character: only letters, no special characters allowed")

func GetDefaultSubnetAirdropKeyInfo(app *application.Avalanche, subnetName string) (string, string, string, error) {
keyName := utils.GetDefaultBlockchainAirdropKeyName(subnetName)
Expand Down

0 comments on commit ccb556f

Please sign in to comment.