Phoenix

Results 70 comments of Phoenix

## Requirements This issue doesn't appear to have requirements ATM. May I suggest: - The most important feature that I would like to see come from this is using headings...

Here is a potential workaround that might help you accomplish what you are looking for, although it still requires making changes to Python code files. - Use `django.utils.translation.ugettext_noop` to mark...

You can implement signal-based timeout using `contextlib2.ContextDecorator`. Something like this: ``` class signal_timeout(ContextDecorator): """ Enforces timeout via signals. Can be applied as a context manager or decorator. """ class NotInstalled(object):...

Any chance, did this issue get resolved? We are performing an audit of all the OSS that we are using at our company; I'm a bit confused as to what...

Note: It may be better to wait until IOTA Production Implementation is released before starting on this. Also note that this dovetails nicely with #25

[Per conversation with @alon-e](https://github.com/iotaledger/iri/issues/473), the officially-supported way to check if the node is operating in testnet mode is to [regexp for `/testnet/i` in the `appName`](https://github.com/iotaledger/wallet/blob/7bdb07cc55eb066b0d80acb9de6a327bb867ae6d/ui/js/ui.update.js#L121) (from `getNodeInfo` response).

Possibly related: https://github.com/iotaledger/iri/pull/1062

Hi @rav1112 the exception has a `context` attribute attached to it which contains more information: ```python from pprint import pprint try: ... except Exception as exc: context = getattr(exc, "context",...

Gotcha. Hmmmm, I think the only reason why `MultisigAddress` (or subclass) is required is to protect against attempting to create a multisig transfer from a non-multisig address. This is one...

Sure! The "using 6 fragments" part indicates that the signature was split across 6 transactions (fragments) within the bundle (see https://iota.stackexchange.com/a/147/283 for more info). "invalid signature" is a frustrating error...