Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yashnevatia committed Jan 9, 2025
1 parent 31e8133 commit 7fcf845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/environment/memory/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func GenerateChainsSol(t *testing.T, numChains int) map[uint64]SolanaChain {
client := solRpc.New(url)
balance, err := client.GetBalance(context.Background(), admin.PublicKey(), solRpc.CommitmentConfirmed)
require.NoError(t, err)
require.NotEqual(t, balance.Value, 0) // auto funded 500000000.000000000 SOL
require.NotEqual(t, 0, balance.Value) // auto funded 500000000.000000000 SOL
chains[chainID] = SolanaChain{
Client: client,
DeployerKey: &admin,
Expand Down

0 comments on commit 7fcf845

Please sign in to comment.