diff options
author | Paul Oliver <contact@pauloliver.dev> | 2025-01-23 14:22:33 -0800 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2025-01-24 16:36:25 -0800 |
commit | 367aaf43ef9c52f454a721b1924808aeb2d7944f (patch) | |
tree | ce166cf19d119510ba36f4b3c1fdcb9f2214c299 /hsm-dummy-receiver/Main.hs | |
parent | 85d856e87ad7875e5dfab19e22e71c4118f4cbad (diff) |
Replaces Int with Word type for numerical values
Diffstat (limited to 'hsm-dummy-receiver/Main.hs')
-rw-r--r-- | hsm-dummy-receiver/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hsm-dummy-receiver/Main.hs b/hsm-dummy-receiver/Main.hs index 6f3db81..6fb78b1 100644 --- a/hsm-dummy-receiver/Main.hs +++ b/hsm-dummy-receiver/Main.hs @@ -34,7 +34,7 @@ handle = S.fold S.drain . S.mapM handler . mappend "Received pulse #" . pack . show - . body @Int + . body @Word -- Dummy receiver service: -- Proof of concept. Listens for "pulses" through ZMQ and logs each time one |