nim-eth/eth/p2p/rlpx_protocols
Jamie Lokier 0f3bb61678
Fix import syntax error in `les_protocol.nim` added by PR #344
`les_protocol.nim` failed to build, due to very silly Nim bugs
nim-lang/Nim#8792 and nim-lang/Nim#17102.

    import
      ../../[rlp, keys], ../../common/eth_types,
      ../[rlpx, kademlia, blockchain_utils], ../private/p2p_types,

The silly part is `../` has to be quoted if it's before a group of files, but
not before a single file.  Most places in PR #344 / 7624153 use the workaround
`".."/` but it was missed in `les_protocol.nim`:

    nimbus-eth1/vendor/nim-eth/eth/p2p/rlpx_protocols/les_protocol.nim(14, 3)
        Error: cannot open file: ../../[rlp,keys]

Signed-off-by: Jamie Lokier <jamie@shareable.org>
2021-04-07 18:07:00 +01:00
..
les Add build_dcli target and add it to CI (#344) 2021-04-06 13:33:24 +02:00
whisper Add build_dcli target and add it to CI (#344) 2021-04-06 13:33:24 +02:00
bzz_protocol.nim Add build_dcli target and add it to CI (#344) 2021-04-06 13:33:24 +02:00
eth_protocol.nim Add build_dcli target and add it to CI (#344) 2021-04-06 13:33:24 +02:00
les_protocol.nim Fix import syntax error in `les_protocol.nim` added by PR #344 2021-04-07 18:07:00 +01:00
whisper_protocol.nim Add build_dcli target and add it to CI (#344) 2021-04-06 13:33:24 +02:00