mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* move OOR transaction creation client-side * robust redeem tx checks * optimize GetVtxos db call * rename CompleteAsyncPayment --> SubmitRedeemTx * fix permissions.go
14 lines
226 B
Go
14 lines
226 B
Go
package common
|
|
|
|
import (
|
|
"github.com/btcsuite/btcd/wire"
|
|
"github.com/btcsuite/btcwallet/waddrmgr"
|
|
)
|
|
|
|
type VtxoInput struct {
|
|
Outpoint *wire.OutPoint
|
|
Amount int64
|
|
Tapscript *waddrmgr.Tapscript
|
|
WitnessSize int
|
|
}
|