Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
d7be5c66
Commit
d7be5c66
authored
May 07, 2018
by
GagziW
Committed by
Péter Szilágyi
May 07, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
common: changed if-else blocks to conform with golint (#16656)
parent
d2fe83dc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
bytes.go
common/bytes.go
+6
-8
No files found.
common/bytes.go
View file @
d7be5c66
...
...
@@ -87,15 +87,13 @@ func Hex2BytesFixed(str string, flen int) []byte {
h
,
_
:=
hex
.
DecodeString
(
str
)
if
len
(
h
)
==
flen
{
return
h
}
else
{
}
if
len
(
h
)
>
flen
{
return
h
[
len
(
h
)
-
flen
:
]
}
else
{
}
hh
:=
make
([]
byte
,
flen
)
copy
(
hh
[
flen
-
len
(
h
)
:
flen
],
h
[
:
])
return
hh
}
}
}
func
RightPadBytes
(
slice
[]
byte
,
l
int
)
[]
byte
{
...
...
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