func (s *Store) SetDelegationClaimedRewards(id sfctype.DelegationID, amount *big.Int) {
    err := s.table.DelegationOldRewards.Put(id.Bytes(), amount.Bytes())
    if err != nil {
        s.Log.Crit("Failed to put key-value", "err", err)
    }