Add old bulletproof type query

This commit is contained in:
fuwa 2018-12-09 10:32:26 +08:00 committed by wowario
parent 5bf7ce14c5
commit 7759d52a25
No known key found for this signature in database
GPG key ID: 24DCBE762DE9C111
2 changed files with 13 additions and 0 deletions

View file

@ -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)

View file

@ -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; }