From 70c443893a1f68b7a7e30ddb73a538f939e3f03d Mon Sep 17 00:00:00 2001 From: alex v Date: Sun, 24 Nov 2024 22:54:29 +0100 Subject: [PATCH] remove duplicated def --- src/blsct/wallet/txfactory_global.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/blsct/wallet/txfactory_global.h b/src/blsct/wallet/txfactory_global.h index c921ebcc556b6..4bb95b5257826 100644 --- a/src/blsct/wallet/txfactory_global.h +++ b/src/blsct/wallet/txfactory_global.h @@ -77,7 +77,6 @@ struct Amounts { CTransactionRef AggregateTransactions(const std::vector& txs); UnsignedOutput CreateOutput(const Scalar& tokenKey, const blsct::TokenInfo& tokenInfo); -UnsignedOutput CreateOutput(const Scalar& tokenKey, const blsct::TokenInfo& tokenInfo); UnsignedOutput CreateOutput(const blsct::DoublePublicKey& destKeys, const CAmount& nAmount, const Scalar& blindingKey, const Scalar& tokenKey, const blsct::PublicKey& tokenPublicKey); UnsignedOutput CreateOutput(const blsct::DoublePublicKey& destKeys, const Scalar& blindingKey, const Scalar& tokenKey, const blsct::PublicKey& tokenPublicKey, const uint64_t& nftId, const std::map& nftMetadata); UnsignedOutput CreateOutput(const blsct::DoublePublicKey& destination, const CAmount& nAmount, std::string sMemo, const TokenId& tokenId = TokenId(), const Scalar& blindingKey = Scalar::Rand(), const CreateTransactionType& type = NORMAL, const CAmount& minStake = 0);