Skip to content

Commit c294c49

Browse files
committed
Try to fix macOS build
Type "long" is not reflected, so avoid using it implicitly
1 parent 11b2a81 commit c294c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cli/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1246,8 +1246,8 @@ BOOST_FIXTURE_TEST_CASE( cli_confidential_tx_test, cli_fixture )
12461246
// then confirm that balances are received, and then analyze the range
12471247
// prooofs to make sure the mantissa length does not reveal approximate
12481248
// balance (issue #480).
1249-
std::map<std::string, share_type> to_list = {{"alice",100000000000},
1250-
{"bob", 1000000000}};
1249+
std::map<std::string, share_type> to_list = {{"alice",100000000000LL},
1250+
{"bob", 1000000000LL}};
12511251
vector<blind_confirmation> bconfs;
12521252
auto core_asset = W.get_asset("1.3.0");
12531253
BOOST_TEST_MESSAGE("Sending blind transactions to alice and bob");

0 commit comments

Comments
 (0)