mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* [common] rework address encoding * new address encoding * replace offchain address by vtxo output key in DB * merge migrations files into init one * fix txbuilder fixtures * fix transaction events
13 lines
203 B
Go
13 lines
203 B
Go
package tree
|
|
|
|
import (
|
|
"github.com/vulpemventures/go-elements/psetv2"
|
|
)
|
|
|
|
type TreeFactory func(outpoint psetv2.InputArgs) (CongestionTree, error)
|
|
|
|
type VtxoLeaf struct {
|
|
Pubkey string
|
|
Amount uint64
|
|
}
|