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
The UX should be transparent to the user. Only the underlying transaction building/signing should change.
if consensus.Index.Height > consensus.Network.HardforkV2.AllowHeight {
// Instead of `/fund` and `/fund/sf` call `/v2/fund` and `/v2/fund/sf`
// Use consensus.State.InputSigHash` instead of `WholeTransactionSigHash`
// Add signatures to V2 transaction type instead of v1
} else {
// do current stuff
}
The UI currently only supports v1 transactions. It will need to be updated to build and sign v2 transactions after the activation height.
The text was updated successfully, but these errors were encountered: