Skip to content

Commit 3da061c

Browse files
committed
Fix osx type ambiguity error (regression).
1 parent a656069 commit 3da061c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/protocols/protocol_electrum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ void protocol_electrum::blockchain_block_headers(size_t starting,
228228
if (multiplicity)
229229
{
230230
result["max"] = maximum;
231-
result["count"] = headers.size();
231+
result["count"] = uint64_t{ headers.size() };
232232
result["headers"] = std::move(headers);
233233
}
234234
else

0 commit comments

Comments
 (0)