From 666576682a0fb604e1181386e0773c8a737536b2 Mon Sep 17 00:00:00 2001 From: EmelyanenkoK Date: Tue, 9 Feb 2021 17:26:26 +0300 Subject: [PATCH] Fix non-critical bug in config-code Wins/losses order is messed up --- crypto/smartcont/config-code.fc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/smartcont/config-code.fc b/crypto/smartcont/config-code.fc index eedb0dc5..a638144e 100644 --- a/crypto/smartcont/config-code.fc +++ b/crypto/smartcont/config-code.fc @@ -601,7 +601,9 @@ _ unpack_proposal(slice pstatus) inline_ref { voters_list = cons(voter_id, voters_list); } } until (~ f); - var (rounds_remaining, losses, wins) = (rest~load_uint(8), rest~load_uint(8), rest~load_uint(8)); + ;; Note there is a bug in config contract currently deployed in testnet2: + ;; wins and losses are messed up + var (rounds_remaining, wins, losses) = (rest~load_uint(8), rest~load_uint(8), rest~load_uint(8)); rest.end_parse(); var (param_id, param_val, param_hash) = parse_config_proposal(proposal); return [expires, critical?, [param_id, param_val, param_hash], vset_id, voters_list, weight_remaining, rounds_remaining, losses, wins];