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
A bug in line 62 of the file named tx_signer.dart final signatureData = wallet.signTxData(bytes);
The right return value is a list with length 64. But Sometimes this method return a list with length 63.
An example:
error value: 90fe20aea909ed11286468bd2b7e6c781d22e2df3fd2e0633ee16b2a3d7ea8f4 866a88d544df5dfb979a9b191e804155a64b94bd9cadcbbbaa7bb28e73f129
The above value miss 00 in middle. The below is right value: 90fe20aea909ed11286468bd2b7e6c781d22e2df3fd2e0633ee16b2a3d7ea8f400866a88d544df5dfb979a9b191e804155a64b94bd9cadcbbbaa7bb28e73f129
The text was updated successfully, but these errors were encountered:
I found a bug in signatures.
TxSigner.signStdTx(wallet: wallet, stdTx: stdTx);
tx_signer.dart
final signatureData = wallet.signTxData(bytes);
The right return value is a list with length 64. But Sometimes this method return a list with length 63.
An example:
error value:
90fe20aea909ed11286468bd2b7e6c781d22e2df3fd2e0633ee16b2a3d7ea8f4 866a88d544df5dfb979a9b191e804155a64b94bd9cadcbbbaa7bb28e73f129
The above value miss
00
in middle. The below is right value:90fe20aea909ed11286468bd2b7e6c781d22e2df3fd2e0633ee16b2a3d7ea8f400866a88d544df5dfb979a9b191e804155a64b94bd9cadcbbbaa7bb28e73f129
The text was updated successfully, but these errors were encountered: