]>
Commit | Line | Data |
---|---|---|
d082e563 | 1 | /****************************************************************************** |
2 | * Copyright © 2014-2018 The SuperNET Developers. * | |
3 | * * | |
4 | * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at * | |
5 | * the top-level directory of this distribution for the individual copyright * | |
6 | * holder information and the developer policies on copyright and licensing. * | |
7 | * * | |
8 | * Unless otherwise agreed in a custom licensing agreement, no part of the * | |
9 | * SuperNET software, including this file may be copied, modified, propagated * | |
10 | * or distributed except according to the terms contained in the LICENSE file * | |
11 | * * | |
12 | * Removal or modification of this copyright notice is prohibited. * | |
13 | * * | |
14 | ******************************************************************************/ | |
15 | ||
16 | ||
17 | #ifndef CC_FAUCET_H | |
18 | #define CC_FAUCET_H | |
19 | ||
20 | #include "CCinclude.h" | |
21 | ||
b8674c91 | 22 | #define EVAL_FAUCET 0xe4 |
6ca2e998 | 23 | #define FAUCETSIZE (COIN / 10) |
b8674c91 | 24 | |
8a727a26 | 25 | bool FaucetValidate(struct CCcontract_info *cp,Eval* eval,const CTransaction &tx, uint32_t nIn); |
d082e563 | 26 | |
27 | // CCcustom | |
278a61fd | 28 | std::string FaucetFund(uint64_t txfee,int64_t funds); |
65a961ff | 29 | std::string FaucetGet(uint64_t txfee); |
4608d170 | 30 | UniValue FaucetInfo(); |
d082e563 | 31 | |
32 | #endif |