From ed67ce7678d7acff8db5418f5588e35c75740512 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Tue, 15 Sep 2020 12:43:06 -0400 Subject: [PATCH] watchtower/blob/type: remove use of iota for flag constants --- watchtower/blob/type.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watchtower/blob/type.go b/watchtower/blob/type.go index 923614db..da83472c 100644 --- a/watchtower/blob/type.go +++ b/watchtower/blob/type.go @@ -14,11 +14,11 @@ const ( // include the reward script negotiated during session creation. Without // the flag, there is only one output sweeping clients funds back to // them solely. - FlagReward Flag = 1 << iota + FlagReward Flag = 1 // FlagCommitOutputs signals that the blob contains the information // required to sweep commitment outputs. - FlagCommitOutputs + FlagCommitOutputs Flag = 1 << 1 ) // Type returns a Type consisting solely of this flag enabled.