Skip to content

Common Errors

Turadg Aleahmad edited this page Dec 6, 2023 · 3 revisions

Errors that tend to appear in console logs. Write them here to share your knowledge about how to stop them, or why they’re benign.

Error: keyword "stATOM" must be an ascii identifier starting with upper case

This is benign and a known issue: https://github.com/Agoric/agoric-sdk/issues/8238

TypeError: target has no method "getDisplayInfo", has ["isMyClock","isMyTimerService"]

agoricNames.brand has mostly ERTP brands. timerBrand is not an ERTP brand but it was put in agoricNames.brand because it is a brand.

Some proposals (eg. upgrade-walletFactory) have a that loop iterates over them all to populate boardAux with ERTP features like display info.

When it tries to use the TimerBrand as an ERTP brand, the error logs. (Followed by TypeError: target has no method "getAllegedName", has ["isMyClock","isMyTimerService"])

May be addressed in https://github.com/Agoric/agoric-sdk/issues/8627

Clone this wiki locally