We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774a163 commit 9e7711bCopy full SHA for 9e7711b
src/multichain/command/builders/QueryBuilderGrant.java
@@ -16,14 +16,14 @@
16
*/
17
public class QueryBuilderGrant extends QueryBuilderCommon {
18
19
+ protected static byte CREATE = (byte) 0b00000000;
20
protected static byte CONNECT = (byte) 0b00000001;
21
protected static byte SEND = (byte) 0b00000010;
22
protected static byte RECEIVE = (byte) 0b00000100;
23
protected static byte ISSUE = (byte) 0b00001000;
24
protected static byte MINE = (byte) 0b00010000;
25
protected static byte ACTIVATE = (byte) 0b00100000;
26
protected static byte ADMIN = (byte) 0b01000000;
- protected static byte CREATE = (byte) 0b10000000;
27
28
protected static int WALLET = CONNECT | SEND | RECEIVE;
29
protected static int WALLET_ISSUE = WALLET | ISSUE;
0 commit comments