Skip to content

Commit 2c02241

Browse files
committed
Fix missing initializer warning
1 parent 452b4cd commit 2c02241

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/jtx/mpt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ struct MPTInitDef
123123
{
124124
Env& env;
125125
Account issuer;
126-
std::vector<Account> holders;
126+
std::vector<Account> holders = {};
127127
std::uint16_t transferFee = 0;
128128
std::optional<std::uint64_t> pay = std::nullopt;
129129
std::uint32_t flags = MPTDEXFlags;

0 commit comments

Comments
 (0)