@@ -274,7 +274,7 @@ func deploySubnet(_ *cobra.Command, args []string) error {
274
274
275
275
// from here on we are assuming a public deploy
276
276
277
- // get keychain accesor
277
+ // get keychain accessor
278
278
kc , err := GetKeychain (useLedger , ledgerAddresses , keyName , network )
279
279
if err != nil {
280
280
return err
@@ -519,7 +519,7 @@ func getThreshold(maxLen int) (uint32, error) {
519
519
if maxLen == 1 {
520
520
return uint32 (1 ), nil
521
521
}
522
- // create a list of indexes so the user only has the option to choose what is the theshold
522
+ // create a list of indexes so the user only has the option to choose what is the threshold
523
523
// instead of entering
524
524
indexList := make ([]string , maxLen )
525
525
for i := 0 ; i < maxLen ; i ++ {
@@ -597,7 +597,7 @@ func SaveNotFullySignedTx(
597
597
}
598
598
if forceOverwrite {
599
599
ux .Logger .PrintToUser ("" )
600
- ux .Logger .PrintToUser ("Overwritting %s" , outputTxPath )
600
+ ux .Logger .PrintToUser ("Overwriting %s" , outputTxPath )
601
601
}
602
602
if err := txutils .SaveToDisk (tx , outputTxPath , forceOverwrite ); err != nil {
603
603
return err
@@ -645,7 +645,7 @@ func GetKeychain(
645
645
keyName string ,
646
646
network models.Network ,
647
647
) (keychain.Keychain , error ) {
648
- // get keychain accesor
648
+ // get keychain accessor
649
649
var kc keychain.Keychain
650
650
networkID , err := network .NetworkID ()
651
651
if err != nil {
0 commit comments