mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 10:35:50 +00:00
Introduce NFT support (XLS020)
This commit is contained in:
committed by
manojsdoshi
parent
525aaecbca
commit
70779f6850
@@ -332,7 +332,7 @@ public:
|
||||
return *this == beast::zero;
|
||||
}
|
||||
|
||||
const base_uint
|
||||
constexpr base_uint
|
||||
operator~() const
|
||||
{
|
||||
base_uint ret;
|
||||
@@ -437,6 +437,20 @@ public:
|
||||
return ret;
|
||||
}
|
||||
|
||||
base_uint
|
||||
next() const
|
||||
{
|
||||
auto ret = *this;
|
||||
return ++ret;
|
||||
}
|
||||
|
||||
base_uint
|
||||
prev() const
|
||||
{
|
||||
auto ret = *this;
|
||||
return --ret;
|
||||
}
|
||||
|
||||
base_uint&
|
||||
operator+=(const base_uint& b)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user