Skip to content

Commit

Permalink
Make body field optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerg1996 committed Apr 9, 2024
1 parent ae491ca commit eddb185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/projects/ton-compiler/cpp-sdk/tvm/schema/message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ template<typename X>
struct message {
CommonMsgInfo info;
optional<ref<StateInit>> init;
ref<X> body;
optional<ref<X>> body;
};

template<typename X>
struct message_relaxed {
CommonMsgInfoRelaxed info;
optional<ref<StateInit>> init;
ref<X> body;
optional<ref<X>> body;
};

struct addr_std_fixed {
Expand Down

0 comments on commit eddb185

Please sign in to comment.