mirror of
https://github.com/vtnerd/monero-lws.git
synced 2025-04-02 20:09:03 +00:00
Make arrays in 'account' optional again
This commit is contained in:
parent
a585a9c13b
commit
1982171441
1 changed files with 4 additions and 4 deletions
|
@ -118,10 +118,10 @@ namespace lws
|
|||
{
|
||||
wire::object(format,
|
||||
wire::field<0>("immutable_", std::ref(immutable)),
|
||||
wire::field<1>("spendable_", wire::trusted_array(std::ref(self.spendable_))),
|
||||
wire::field<2>("pubs_", wire::trusted_array(std::ref(self.pubs_))),
|
||||
wire::field<3>("spends_", wire::trusted_array(std::ref(self.spends_))),
|
||||
wire::field<4>("outputs_", wire::trusted_array(std::ref(self.outputs_))),
|
||||
wire::optional_field<1>("spendable_", wire::trusted_array(std::ref(self.spendable_))),
|
||||
wire::optional_field<2>("pubs_", wire::trusted_array(std::ref(self.pubs_))),
|
||||
wire::optional_field<3>("spends_", wire::trusted_array(std::ref(self.spends_))),
|
||||
wire::optional_field<4>("outputs_", wire::trusted_array(std::ref(self.outputs_))),
|
||||
WIRE_FIELD_ID(5, height_)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue