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
// TransactionInfo is the info of a tx on Bitcoin,// including// - the position of the tx on BTC blockchain// - the full tx content// - the Merkle proof that this tx is on the above positionmessageTransactionInfo {
// key is the position (txIdx, blockHash) of this tx on BTC blockchain// Although it is already a part of SubmissionKey, we store it here again// to make TransactionInfo self-contained.// For example, storing the key allows TransactionInfo to not relay on// the fact that TransactionInfo will be ordered in the same order as// TransactionKeys in SubmissionKey.TransactionKeykey=1;
// transaction is the full transaction in bytesbytestransaction=2;
// proof is the Merkle proof that this tx is included in the position in `key`// TODO: maybe it could use here better format as we already processed and// validated the proof?bytesproof=3;
}
Also, write a script to populate this information from old staking tx that do not have this information
The text was updated successfully, but these errors were encountered:
To create BTC delegations we also need the index and proof
Also, write a script to populate this information from old staking tx that do not have this information
The text was updated successfully, but these errors were encountered: