Skip to content

Commit 6be9ce4

Browse files
authored
fix: fixed array creatin in a unit test (#299)
1 parent bc7c61e commit 6be9ce4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Reach out to us at one of the following places!
6060

6161
## License
6262

63-
Copyright © 2020 - 2022 Injective Labs Inc. (https://injectivelabs.org/)
63+
Copyright © 2020 - 2025 Injective Labs Inc. (https://injectivelabs.org/)
6464

6565
<a href="https://drive.google.com/uc?export=view&id=1-fPQRh_D_dnun2yTtSsPW5MypVBOVYJP"><img src="https://drive.google.com/uc?export=view&id=1-fPQRh_D_dnun2yTtSsPW5MypVBOVYJP" style="width: 300px; max-width: 100%; height: auto" />
6666

client/core/tokens_file_loader_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
func TestLoadTokensFromUrl(t *testing.T) {
14-
tokensMetadata := make([]TokenMetadata, 2)
14+
tokensMetadata := make([]TokenMetadata, 0, 2)
1515
tokensMetadata = append(tokensMetadata, TokenMetadata{
1616
Address: "",
1717
IsNative: true,

0 commit comments

Comments
 (0)