AccountLibrary
Functions
requestFlags
Gets the locked and fulfilled request flags for the request with the given index.
function requestFlags(Account storage self, uint32 idx) internal view returns (bool locked, bool fulfilled);
Name | Type | Description |
---|---|---|
self | Account | The account to get the request flags from. |
idx | uint32 | The index of the request. |
Name | Type | Description |
---|---|---|
locked | bool | True if the request is locked, false otherwise. |
fulfilled | bool | True if the request is fulfilled, false otherwise. |
setRequestFlags
Sets the locked and fulfilled request flags for the request with the given index.
The given value of flags will be applied with |= to the flags for the request. Least significant bit is locked, second-least significant is fulfilled.
function setRequestFlags(Account storage self, uint32 idx, uint8 flags) internal;
Name | Type | Description |
---|---|---|
self | Account | The account to set the request flags for. |
idx | uint32 | The index of the request. |
flags | uint8 | The flags to set for the request. |
setRequestLocked
Sets the locked flag for the request with the given index.
function setRequestLocked(Account storage self, uint32 idx) internal;
Name | Type | Description |
---|---|---|
self | Account | The account to set the request flag for. |
idx | uint32 | The index of the request. |
setRequestFulfilled
Sets the fulfilled flag for the request with the given index.
function setRequestFulfilled(Account storage self, uint32 idx) internal;
Name | Type | Description |
---|---|---|
self | Account | The account to set the request flag for. |
idx | uint32 | The index of the request. |
setFrozen
Sets the frozen flag for the account
function setFrozen(Account storage account) internal;
Name | Type | Description |
---|---|---|
account | Account | The account to set as frozen |
unsetFrozen
Unsets the frozen flag for the account
function unsetFrozen(Account storage account) internal;
Name | Type | Description |
---|---|---|
account | Account | The account to unfreeze |
isFrozen
Checks if an account is frozen
function isFrozen(Account storage account) internal view returns (bool);
Name | Type | Description |
---|---|---|
account | Account | The account to check |
Name | Type | Description |
---|---|---|
<none> | bool | True if the account is frozen, false otherwise |