From e29a7ba133baef40341b459c0162320a643cf6e1 Mon Sep 17 00:00:00 2001 From: stoffu Date: Wed, 12 Sep 2018 08:50:03 +0900 Subject: [PATCH] fix compile error from boost variant initialization --- src/page.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/page.h b/src/page.h index ada33a8..1cd5920 100644 --- a/src/page.h +++ b/src/page.h @@ -2539,7 +2539,7 @@ show_my_outputs(string tx_hash_str, //cout << "\nmixins: " << mix << '\n'; - context["no_all_possible_mixins"] = all_possible_mixins.size(); + context["no_all_possible_mixins"] = static_cast(all_possible_mixins.size()); context["all_possible_mixins_amount"] = all_possible_mixins_amount1;