remove copy statement where not needed

This commit is contained in:
Timothy Pogue 2022-09-12 14:09:12 -06:00
parent c19a5fbe06
commit 0697041f14

View File

@ -292,7 +292,7 @@ class ExternalMessageConsumer:
return
# Add the pairlist data to the DataProvider
self._dp._set_producer_pairs(whitelist_message.data.copy(), producer_name=producer_name)
self._dp._set_producer_pairs(whitelist_message.data, producer_name=producer_name)
logger.debug(f"Consumed message from `{producer_name}` of type `RPCMessageType.WHITELIST`")