A simple collection of UTXO entries. This struct is used to
retain a set of UTXO entries in the WASM memory for faster
processing. This struct keeps a list of entries represented
by UtxoEntryReference struct. This data structure is used
internally by the framework, but is exposed for convenience.
Please consider using UtxoContext instead.
Sort the contained entries by amount. Please note that
this function is not intended for use with large UTXO sets
as it duplicates the whole contained UTXO set while sorting.
A simple collection of UTXO entries. This struct is used to retain a set of UTXO entries in the WASM memory for faster processing. This struct keeps a list of entries represented by
UtxoEntryReference
struct. This data structure is used internally by the framework, but is exposed for convenience. Please consider usingUtxoContext
instead.