From 04edbe46084b2b89e6e90d9cdadfeeac06f56e0b Mon Sep 17 00:00:00 2001 From: terminal Date: Mon, 1 Aug 2022 13:41:49 +0400 Subject: [PATCH] add interface --- .../dshackle/upstream/ethereum/EthereumLikeMultistream.kt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLikeMultistream.kt diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLikeMultistream.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLikeMultistream.kt new file mode 100644 index 00000000..40d3a437 --- /dev/null +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumLikeMultistream.kt @@ -0,0 +1,8 @@ +package io.emeraldpay.dshackle.upstream.ethereum + +import io.emeraldpay.dshackle.upstream.Upstream + +interface EthereumLikeMultistream : Upstream { + fun getReader(): EthereumReader + fun getSubscribe(): EthereumSubscribe +}