From 3fe3c5dab0733cc105cadf7cc49df37271f1b337 Mon Sep 17 00:00:00 2001 From: Eric Voskuil Date: Tue, 1 Sep 2026 22:50:48 -0400 Subject: [PATCH] Define unspent_coins. --- include/bitcoin/database/types/unspent_coin.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/bitcoin/database/types/unspent_coin.hpp b/include/bitcoin/database/types/unspent_coin.hpp index 2abd6b3d8..a431c24a5 100644 --- a/include/bitcoin/database/types/unspent_coin.hpp +++ b/include/bitcoin/database/types/unspent_coin.hpp @@ -50,6 +50,8 @@ struct BCD_API unspent_coin system::data_chunk script{}; }; +using unspent_coins = std::vector; + } // namespace database } // namespace libbitcoin