Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-bitswap
Commits
bf9f36e3
Commit
bf9f36e3
authored
Dec 05, 2017
by
Steven Allen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bitswap: preallocate cid string array
License: MIT Signed-off-by:
Steven Allen
<
steven@stebalien.com
>
parent
90d17a67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
notifications/notifications.go
notifications/notifications.go
+1
-1
No files found.
notifications/notifications.go
View file @
bf9f36e3
...
@@ -73,7 +73,7 @@ func (ps *impl) Subscribe(ctx context.Context, keys ...*cid.Cid) <-chan blocks.B
...
@@ -73,7 +73,7 @@ func (ps *impl) Subscribe(ctx context.Context, keys ...*cid.Cid) <-chan blocks.B
}
}
func
toStrings
(
keys
[]
*
cid
.
Cid
)
[]
string
{
func
toStrings
(
keys
[]
*
cid
.
Cid
)
[]
string
{
strs
:=
make
([]
string
,
0
)
strs
:=
make
([]
string
,
0
,
len
(
keys
)
)
for
_
,
key
:=
range
keys
{
for
_
,
key
:=
range
keys
{
strs
=
append
(
strs
,
key
.
KeyString
())
strs
=
append
(
strs
,
key
.
KeyString
())
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment