Add old bulletproof type query

pull/134/head
fuwa 5 years ago committed by wowario
parent 5bf7ce14c5
commit 7759d52a25
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -237,6 +237,18 @@ namespace rct {
}
}
bool is_rct_old_bulletproof(int type)
{
switch (type)
{
case RCTTypeSimpleBulletproof:
case RCTTypeFullBulletproof:
return true;
default:
return false;
}
}
bool is_rct_borromean(int type)
{
switch (type)

@ -554,6 +554,7 @@ namespace rct {
bool is_rct_simple(int type);
bool is_rct_bulletproof(int type);
bool is_rct_old_bulletproof(int type);
bool is_rct_borromean(int type);
static inline const rct::key &pk2rct(const crypto::public_key &pk) { return (const rct::key&)pk; }

Loading…
Cancel
Save