From f296b82ba538b4e48fdfdf71efe8fde45cbc6677 Mon Sep 17 00:00:00 2001 From: Stephen Shelton Date: Wed, 13 May 2020 10:52:35 -0600 Subject: [PATCH] Wrap code section in README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6d62781..4331107 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,7 @@ The connection ID generally has two possible values: places to get one, such as from the `Message` object passed to a command: see the following section). + ```C++ // Send to a service node, establishing a connection if necessary: std::string my_sn = ...; // 32-byte pubkey of a known SN lmq.send(my_sn, "sn.explode", "{ \"seconds\": 30 }"); @@ -137,6 +138,7 @@ The connection ID generally has two possible values: else std::cout << "Timeout fetching height!"; }); + ``` ## Command invocation