Merge pull request #5384

0eee6cd7 block_weight: catch exceptions in main for clean exit on error (moneromooo-monero)
4b3bb829 epee: init a new ssl related variable in ctor (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2019-04-11 13:15:20 +02:00
commit 716f5a2a6a
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
2 changed files with 3 additions and 0 deletions

View file

@ -195,8 +195,10 @@ static void test(test_t t, uint64_t blocks)
int main()
{
TRY_ENTRY();
test(test_max, 2 * LONG_TERM_BLOCK_WEIGHT_WINDOW);
test(test_lcg, 9 * LONG_TERM_BLOCK_WEIGHT_WINDOW);
test(test_min, 1 * LONG_TERM_BLOCK_WEIGHT_WINDOW);
return 0;
CATCH_ENTRY_L0("main", 1);
}