Skip to content

Commit 2f90c89

Browse files
committed
Update example comment
1 parent 0f4524b commit 2f90c89

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

examples/SmokeSig.elm

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import Json.Decode.Pipeline exposing (custom)
2323

2424
{-
2525
26-
This file was generated by https://github.com/cmditch/elm-ethereum-generator v3.0.1
27-
Compatible with elm-ethereum v4.0.0
26+
This file was generated by https://github.com/cmditch/elm-ethereum-generator v4.0.0
27+
Compatible with elm-ethereum v5.0.0
2828
2929
-}
3030
-- amountBurnedForSignal(bytes32) function
@@ -103,11 +103,11 @@ type alias SmokeSignalWithMessage =
103103

104104

105105
smokeSignalWithMessageEvent : Address -> Maybe Hex -> Maybe Address -> LogFilter
106-
smokeSignalWithMessageEvent contractAddress hash_ from_ =
106+
smokeSignalWithMessageEvent contractAddress hash_ from_ =
107107
{ fromBlock = LatestBlock
108108
, toBlock = LatestBlock
109109
, address = contractAddress
110-
, topics =
110+
, topics =
111111
[ Just <| U.unsafeToHex "52dc870e81fddee260ec96189fd5cc37b232d3667f3dab2372a3d98301364976"
112112
, Maybe.map (abiEncode << (E.staticBytes 32)) hash_
113113
, Maybe.map (abiEncode << E.address) from_
@@ -116,7 +116,7 @@ smokeSignalWithMessageEvent contractAddress hash_ from_ =
116116

117117

118118
smokeSignalWithMessageDecoder : Decoder SmokeSignalWithMessage
119-
smokeSignalWithMessageDecoder =
119+
smokeSignalWithMessageDecoder =
120120
Decode.succeed SmokeSignalWithMessage
121121
|> custom (topic 1 (D.staticBytes 32))
122122
|> custom (topic 2 D.address)
@@ -135,11 +135,11 @@ type alias SmokeSignalWithoutMessage =
135135

136136

137137
smokeSignalWithoutMessageEvent : Address -> Maybe Hex -> Maybe Address -> LogFilter
138-
smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
138+
smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
139139
{ fromBlock = LatestBlock
140140
, toBlock = LatestBlock
141141
, address = contractAddress
142-
, topics =
142+
, topics =
143143
[ Just <| U.unsafeToHex "139354f151d35bd99216f6ab24ac33a21c06e704b9d92c01e44f1c8357495044"
144144
, Maybe.map (abiEncode << (E.staticBytes 32)) hash_
145145
, Maybe.map (abiEncode << E.address) from_
@@ -148,7 +148,7 @@ smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
148148

149149

150150
smokeSignalWithoutMessageDecoder : Decoder SmokeSignalWithoutMessage
151-
smokeSignalWithoutMessageDecoder =
151+
smokeSignalWithoutMessageDecoder =
152152
Decode.succeed SmokeSignalWithoutMessage
153153
|> custom (topic 1 (D.staticBytes 32))
154154
|> custom (topic 2 D.address)

0 commit comments

Comments
 (0)