Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sukantoraymond committed Jun 14, 2024
1 parent 7c67f6b commit 9a96a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subnet/subnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
func getDefaultSubnetEVMGenesis() SubnetParams {
allocation := core.GenesisAlloc{}
defaultAmount, _ := new(big.Int).SetString(vm.DefaultEvmAirdropAmount, 10)
allocation[common.HexToAddress("0x5a60e45535fbe925591cefb3e46f1052bbfcc67b")] = core.GenesisAccount{
allocation[common.HexToAddress("INITIAL_ALLOCATION_ADDRESS")] = core.GenesisAccount{
Balance: defaultAmount,
}
return SubnetParams{
Expand All @@ -41,7 +41,7 @@ func TestSubnetDeploy(_ *testing.T) {
subnetParams := getDefaultSubnetEVMGenesis()
newSubnet, _ := New(&subnetParams)
network := avalanche.FujiNetwork()
keychain, _ := keychain.NewKeychain(network, "/Users/raymondsukanto/.avalanche-cli/key/newTestKeyNew.pk")
keychain, _ := keychain.NewKeychain(network, "KEY_PATH")
controlKeys := keychain.Addresses().List()
subnetAuthKeys := keychain.Addresses().List()
threshold := 1
Expand Down

0 comments on commit 9a96a3c

Please sign in to comment.