Skip to content

Commit 9e7711b

Browse files
author
Hubert Marteau
committed
CREATE byte bug fix
1 parent 774a163 commit 9e7711b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multichain/command/builders/QueryBuilderGrant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
*/
1717
public class QueryBuilderGrant extends QueryBuilderCommon {
1818

19+
protected static byte CREATE = (byte) 0b00000000;
1920
protected static byte CONNECT = (byte) 0b00000001;
2021
protected static byte SEND = (byte) 0b00000010;
2122
protected static byte RECEIVE = (byte) 0b00000100;
2223
protected static byte ISSUE = (byte) 0b00001000;
2324
protected static byte MINE = (byte) 0b00010000;
2425
protected static byte ACTIVATE = (byte) 0b00100000;
2526
protected static byte ADMIN = (byte) 0b01000000;
26-
protected static byte CREATE = (byte) 0b10000000;
2727

2828
protected static int WALLET = CONNECT | SEND | RECEIVE;
2929
protected static int WALLET_ISSUE = WALLET | ISSUE;

0 commit comments

Comments
 (0)