diff --git a/test/functional/abc-rpc.py b/test/functional/abc-rpc.py --- a/test/functional/abc-rpc.py +++ b/test/functional/abc-rpc.py @@ -10,7 +10,6 @@ import re from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * -from test_framework.mininode import NODE_BITCOIN_CASH from test_framework.cdefs import (ONE_MEGABYTE, LEGACY_MAX_BLOCK_SIZE, DEFAULT_MAX_BLOCK_SIZE) @@ -81,18 +80,9 @@ # check for EB correctness in the subver string self.check_subversion("/Bitcoin ABC:.*\(EB13\.1; .*\)/") - def test_cashservicebit(self): - # Check that NODE_BITCOIN_CASH bit is set. - # This can be seen in the 'localservices' entry of getnetworkinfo RPC. - node = self.nodes[0] - nw_info = node.getnetworkinfo() - assert_equal(int(nw_info['localservices'], 16) & NODE_BITCOIN_CASH, - NODE_BITCOIN_CASH) - def run_test(self): self.genesis_hash = int(self.nodes[0].getbestblockhash(), 16) self.test_excessiveblock() - self.test_cashservicebit() if __name__ == '__main__':