forked from lthn/blockchain
disabled aliases registration fee checks for testnet
This commit is contained in:
parent
28f1ed42d9
commit
102e0c1cf9
2 changed files with 8 additions and 7 deletions
|
|
@ -4,22 +4,19 @@ AlignConsecutiveAssignments: 'true'
|
||||||
AlignConsecutiveDeclarations: 'false'
|
AlignConsecutiveDeclarations: 'false'
|
||||||
AlignEscapedNewlines: Right
|
AlignEscapedNewlines: Right
|
||||||
AlignOperands: 'false'
|
AlignOperands: 'false'
|
||||||
AlignTrailingComments: 'true'
|
AlignTrailingComments: 'false'
|
||||||
AllowAllParametersOfDeclarationOnNextLine: 'false'
|
AllowAllParametersOfDeclarationOnNextLine: 'false'
|
||||||
AllowShortBlocksOnASingleLine: 'false'
|
AllowShortBlocksOnASingleLine: 'false'
|
||||||
AllowShortCaseLabelsOnASingleLine: 'true'
|
AllowShortCaseLabelsOnASingleLine: 'true'
|
||||||
AllowShortFunctionsOnASingleLine: None
|
AllowShortFunctionsOnASingleLine: None
|
||||||
AllowShortIfStatementsOnASingleLine: 'true'
|
|
||||||
AllowShortLoopsOnASingleLine: 'false'
|
AllowShortLoopsOnASingleLine: 'false'
|
||||||
AlwaysBreakAfterReturnType: None
|
AlwaysBreakAfterReturnType: None
|
||||||
AlwaysBreakBeforeMultilineStrings: 'false'
|
AlwaysBreakBeforeMultilineStrings: 'false'
|
||||||
AlwaysBreakTemplateDeclarations: 'true'
|
|
||||||
BinPackArguments: 'true'
|
BinPackArguments: 'true'
|
||||||
BinPackParameters: 'true'
|
BinPackParameters: 'true'
|
||||||
BreakAfterJavaFieldAnnotations: 'true'
|
BreakAfterJavaFieldAnnotations: 'true'
|
||||||
BreakBeforeBinaryOperators: None
|
BreakBeforeBinaryOperators: None
|
||||||
BreakBeforeBraces: Stroustrup
|
BreakBeforeBraces: Allman
|
||||||
BreakBeforeInheritanceComma: 'false'
|
|
||||||
BreakBeforeTernaryOperators: 'false'
|
BreakBeforeTernaryOperators: 'false'
|
||||||
BreakConstructorInitializers: BeforeColon
|
BreakConstructorInitializers: BeforeColon
|
||||||
BreakStringLiterals: 'false'
|
BreakStringLiterals: 'false'
|
||||||
|
|
|
||||||
|
|
@ -3153,8 +3153,12 @@ namespace currency
|
||||||
VARIANT_CASE_CONST(tx_out_zarcanum, o)
|
VARIANT_CASE_CONST(tx_out_zarcanum, o)
|
||||||
//@#@
|
//@#@
|
||||||
VARIANT_SWITCH_END();
|
VARIANT_SWITCH_END();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#ifdef TESTNET
|
||||||
|
found_alias_reward = 10 * COIN;
|
||||||
|
#else
|
||||||
|
@#@ fix it for mainnet bui
|
||||||
|
#endif
|
||||||
return found_alias_reward;
|
return found_alias_reward;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue