@@ -27,32 +27,32 @@ namespace ripple {
27
27
Permission::Permission ()
28
28
{
29
29
granularPermissionMap = {
30
- {" TrustlineAuthorize" , gpTrustlineAuthorize },
31
- {" TrustlineFreeze" , gpTrustlineFreeze },
32
- {" TrustlineUnfreeze" , gpTrustlineUnfreeze },
33
- {" AccountDomainSet" , gpAccountDomainSet },
34
- {" AccountEmailHashSet" , gpAccountEmailHashSet },
35
- {" AccountMessageKeySet" , gpAccountMessageKeySet },
36
- {" AccountTransferRateSet" , gpAccountTransferRateSet },
37
- {" AccountTickSizeSet" , gpAccountTickSizeSet },
38
- {" PaymentMint" , gpPaymentMint },
39
- {" PaymentBurn" , gpPaymentBurn },
40
- {" MPTokenIssuanceLock" , gpMPTokenIssuanceLock },
41
- {" MPTokenIssuanceUnlock" , gpMPTokenIssuanceUnlock }};
30
+ {" TrustlineAuthorize" , TrustlineAuthorize },
31
+ {" TrustlineFreeze" , TrustlineFreeze },
32
+ {" TrustlineUnfreeze" , TrustlineUnfreeze },
33
+ {" AccountDomainSet" , AccountDomainSet },
34
+ {" AccountEmailHashSet" , AccountEmailHashSet },
35
+ {" AccountMessageKeySet" , AccountMessageKeySet },
36
+ {" AccountTransferRateSet" , AccountTransferRateSet },
37
+ {" AccountTickSizeSet" , AccountTickSizeSet },
38
+ {" PaymentMint" , PaymentMint },
39
+ {" PaymentBurn" , PaymentBurn },
40
+ {" MPTokenIssuanceLock" , MPTokenIssuanceLock },
41
+ {" MPTokenIssuanceUnlock" , MPTokenIssuanceUnlock }};
42
42
43
43
granularTxTypeMap = {
44
- {gpTrustlineAuthorize , ttTRUST_SET},
45
- {gpTrustlineFreeze , ttTRUST_SET},
46
- {gpTrustlineUnfreeze , ttTRUST_SET},
47
- {gpAccountDomainSet , ttACCOUNT_SET},
48
- {gpAccountEmailHashSet , ttACCOUNT_SET},
49
- {gpAccountMessageKeySet , ttACCOUNT_SET},
50
- {gpAccountTransferRateSet , ttACCOUNT_SET},
51
- {gpAccountTickSizeSet , ttACCOUNT_SET},
52
- {gpPaymentMint , ttPAYMENT},
53
- {gpPaymentBurn , ttPAYMENT},
54
- {gpMPTokenIssuanceLock , ttMPTOKEN_ISSUANCE_SET},
55
- {gpMPTokenIssuanceUnlock , ttMPTOKEN_ISSUANCE_SET}};
44
+ {TrustlineAuthorize , ttTRUST_SET},
45
+ {TrustlineFreeze , ttTRUST_SET},
46
+ {TrustlineUnfreeze , ttTRUST_SET},
47
+ {AccountDomainSet , ttACCOUNT_SET},
48
+ {AccountEmailHashSet , ttACCOUNT_SET},
49
+ {AccountMessageKeySet , ttACCOUNT_SET},
50
+ {AccountTransferRateSet , ttACCOUNT_SET},
51
+ {AccountTickSizeSet , ttACCOUNT_SET},
52
+ {PaymentMint , ttPAYMENT},
53
+ {PaymentBurn , ttPAYMENT},
54
+ {MPTokenIssuanceLock , ttMPTOKEN_ISSUANCE_SET},
55
+ {MPTokenIssuanceUnlock , ttMPTOKEN_ISSUANCE_SET}};
56
56
}
57
57
58
58
Permission const &
0 commit comments