From 61a8d8bba7b04e80e5d75af0ca01beb32ad96f3f Mon Sep 17 00:00:00 2001 From: Nicholas Dudfield Date: Thu, 30 Apr 2026 11:03:58 +0700 Subject: [PATCH] chore(hook): update generated tx flags --- hook/tx_flags.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hook/tx_flags.h b/hook/tx_flags.h index 79ecd9be8..3be3e65a0 100644 --- a/hook/tx_flags.h +++ b/hook/tx_flags.h @@ -115,3 +115,8 @@ enum AMMClawbackFlags : uint32_t { enum BridgeModifyFlags : uint32_t { tfClearAccountCreateAmount = 0x00010000, }; + +enum ConsensusEntropyFlags : uint32_t { + tfEntropyCommit = 0x00000001, // entry is a commitment in commitSet + tfEntropyReveal = 0x00000002, // entry is a reveal in entropySet +};