Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Large ship deltas - 2.0 #10323

Merged
merged 3 commits into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/fc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ template <typename ST>
void history_pack_big_bytes(datastream<ST>& ds, const eosio::chain::bytes& v) {
history_pack_varuint64(ds, v.size());
if (v.size())
ds.write(&v.front(), (uint32_t)v.size());
ds.write(&v.front(), v.size());
}

template <typename ST>
Expand Down