You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the tests for the multisig extension of wallet-headless project, I found that the balance key for a token creation of a transaction proposal is undefined as you can see bellow:
// decode response for a token creation transaction proposal{success: true,balance: {'00': {tokens: {available: -1,locked: 0},authorities: {melt: {available: 0,locked: 0},mint: {available: 0,locked: 0},},},undefined: {// token here is undefined because it is not already createdtokens: {available: 100,locked: 0},authorities: {melt: {available: 1,locked: 0},mint: {available: 1,locked: 0},},},},tx: {...},}
During the tests for the multisig extension of wallet-headless project, I found that the balance key for a token creation of a transaction proposal is undefined as you can see bellow:
See:
https://github.com/HathorNetwork/hathor-wallet-headless/blob/fd88de218d00d2f5f86d1873fc3b5d18840e4d76/__tests__/integration/multisig.test.js#L506C12-L506C12
Despite it be correct,
undefined
conveys the lack of intension, therefore it could be something like this:Related to: HathorNetwork/hathor-wallet-headless#317
The text was updated successfully, but these errors were encountered: