Skip to content

Commit

Permalink
mute ununsed function
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Dec 3, 2024
1 parent 50ce8c9 commit 9e88c96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/node/sendoperation/executesc/executesc.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ This function serialize the content of the datastore in a byte array and should
compactAndAppendBytes(&byteArray, key)
compactAndAppendBytes(&byteArray, value)
}
Function is unused right now
*/
func compactAndAppendBytes(msg *[]byte, value interface{}) {
func _compactAndAppendBytes(msg *[]byte, value interface{}) {
buf := make([]byte, binary.MaxVarintLen64)
bytesBuffer := new(bytes.Buffer)
encoder := gob.NewEncoder(bytesBuffer)
Expand Down

0 comments on commit 9e88c96

Please sign in to comment.