2015-01-14 19:17:19 -05:00
|
|
|
#ifndef BITCOIN_NCC_H
|
|
|
|
#define BITCOIN_NCC_H
|
|
|
|
|
|
|
|
#include "script/script.h"
|
2015-02-02 20:57:53 -05:00
|
|
|
|
2015-01-14 19:17:19 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
bool DecodeNCCScript(const CScript& scriptIn, int& op, std::vector<std::vector<unsigned char> >& vvchParams);
|
|
|
|
bool DecodeNCCScript(const CScript& scriptIn, int& op, std::vector<std::vector<unsigned char> >& vvchParams, CScript::const_iterator& pc);
|
|
|
|
CScript StripNCCScriptPrefix(const CScript& scriptIn);
|
|
|
|
|
|
|
|
#endif // BITCOIN_NCC_H
|