Yan Martins

Results 24 issues of Yan Martins

Item 2 in this BIP: https://github.com/bitcoin/bips/blob/master/bip-0062.mediawiki

![image](https://user-images.githubusercontent.com/3236756/88976882-c805f000-d2b4-11ea-8c0e-89c190f3e708.png) Got this when trying to decode a tx that is not in the mainnet, using the explorer decode tool. I created it on my local testnet. I actually thought...

bug

Discord user had this a few times. HathorWallet 0.11.3 on Windows Wallet feedback ![image](https://user-images.githubusercontent.com/3236756/85959739-0ea2ba80-b996-11ea-9fca-b422fd4ba87a.png) Server logs ``` 2020-06-28 18:33:35 [critical ] [twisted] exc_info=(, AssertionError(), ) 2020-06-28 18:33:35 [info ] [twisted]...

bug

When we navigate to the Send Tokens screen, HTR is always used by default, even if another token is selected on the side bar. This seems counter intuitive.

When we release a new wallet, we have to change the version in 3 files: `package.json`, `public/electron.js` and `src/constants.js`. We should try to have it only on `package.json`. At least...

Should we enable users to open developers tools? There's been some debate about it on PR #32

enhancement

Observed this on the desktop wallet, but probably it's a lib issue. The wallet seems to open several ws connections to the fullnode in some conditions. On this screenshot, there...

bug

The lib needs to save some that on the storage, but some of it just needs to be in memory. Right now, we save `wallet:data` in memory, using a specific...

enhancement

We should extend all errors in the lib from this base class so it's easy to catch them all.

refactor

In several places the exception object is not passed to `reject()`, just the exception's message. We do stuff like this: ``` try { ... } catch (e) { reject(e.message); }...

refactor