From c1e433b717fbc26a74ca395771076b203630a5a2 Mon Sep 17 00:00:00 2001 From: jtimon Date: Sat, 30 Aug 2014 13:40:37 +0200 Subject: Rename scriptutils.o to wallet_ismine.o --- src/scriptutils.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/scriptutils.h (limited to 'src/scriptutils.h') diff --git a/src/scriptutils.h b/src/scriptutils.h deleted file mode 100644 index 4e98a1f74..000000000 --- a/src/scriptutils.h +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2013 The Bitcoin developers -// Distributed under the MIT/X11 software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. - -#ifndef H_BITCOIN_SCRIPTUTILS -#define H_BITCOIN_SCRIPTUTILS - -#include "key.h" -#include "script/script.h" - -class CKeyStore; - -/** IsMine() return codes */ -enum isminetype -{ - ISMINE_NO = 0, - ISMINE_WATCH_ONLY = 1, - ISMINE_SPENDABLE = 2, - ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE -}; -/** used for bitflags of isminetype */ -typedef uint8_t isminefilter; - -isminetype IsMine(const CKeyStore& keystore, const CScript& scriptPubKey); -isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest); - -#endif // H_BITCOIN_SCRIPT -- cgit v1.2.3