[#369] status: Compile sources with detailed magic number

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2022-01-24 20:29:32 +03:00 committed by Alex Vanin
parent 227a871a04
commit 959d1c8c38

View file

@ -124,7 +124,10 @@ const (
// If the server cannot match failed outcome to the code, it should // If the server cannot match failed outcome to the code, it should
// use this code. // use this code.
CommonFail_INTERNAL CommonFail = 0 CommonFail_INTERNAL CommonFail = 0
// [**1025**] Wrong magic of the NeoFS network. Not detailed. // [**1025**] Wrong magic of the NeoFS network.
// Details:
// - [**0**] Magic number of the served NeoFS network (big-endian 64-bit
// unsigned integer).
CommonFail_WRONG_MAGIC_NUMBER CommonFail = 1 CommonFail_WRONG_MAGIC_NUMBER CommonFail = 1
) )