From 904a73804d3278df0c5eb9e670467e606bfb9b0e Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 21 Mar 2023 00:36:16 -0400 Subject: [PATCH] Add parity mapping from altnames back to themsevles in `Client._ntable` --- piker/brokers/kraken/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/brokers/kraken/api.py b/piker/brokers/kraken/api.py index e9acc4a7..1223924a 100644 --- a/piker/brokers/kraken/api.py +++ b/piker/brokers/kraken/api.py @@ -538,7 +538,7 @@ class Client: pair: Pair = self._pairs[rest_key] altname = pair.altname wsname = pair.wsname - ntable[rest_key] = ntable[wsname] = altname + ntable[altname] = ntable[rest_key] = ntable[wsname] = altname # register the pair under all monikers, a giant flat # surjection of all possible names to each info obj.