Skip to content

Commit

Permalink
Merge pull request #1203 from ApolloFoundation/stage
Browse files Browse the repository at this point in the history
1.50.32-RC
  • Loading branch information
0486 committed Dec 22, 2021
2 parents ba07d0b + edf4e91 commit cc4bc7d
Show file tree
Hide file tree
Showing 309 changed files with 17,766 additions and 1,562 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ classes
classes*
classes/*.*
.idea/
.run/
addons/classes
apl_db/
classes/
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ OS name: "linux", version: "5.9.12-200.fc33.x86_64", arch: "amd64", family: "uni

### Installation artefacts

Final artefact that is ready to install and run is loacated in the ___apl-exec/target___ directory and has name like ___apollo-blockchain-1.47.25-NoOS-NoArch.zip___.
Final artefact that is ready to install and run is loacated in the ___apl-exec/target___ directory and has name like ___apollo-blockchain-1.50.32-NoOS-NoArch.zip___.

Unzip it to some location and run by scripts in ___ApolloWallet/apollo-blockchain/bin___ directory.

You'll probably need __Apollo-web-ui__ and __Apollo-desktop__ components to use Apollo wallet.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.48.11
1.50.32
5 changes: 1 addition & 4 deletions apl-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.apollocurrency</groupId>
<artifactId>apollo-blockchain</artifactId>
<version>1.48.11</version>
<version>1.50.32</version>
</parent>

<artifactId>apl-api</artifactId>
Expand Down Expand Up @@ -114,9 +114,6 @@
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Duser.language=en</argLine>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public enum Status2FA {
ALREADY_ENABLED,
NOT_CONFIRMED;

public boolean isOK(){
public boolean isOK() {
return this.equals(Status2FA.OK);
}
}
6 changes: 2 additions & 4 deletions apl-api2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.apollocurrency</groupId>
<artifactId>apollo-blockchain</artifactId>
<version>1.48.11</version>
<version>1.50.32</version>
</parent>

<artifactId>apl-api2</artifactId>
Expand Down Expand Up @@ -78,7 +78,6 @@
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-plugin.version}</version>
<executions>
<execution>
<id>clean-webapp</id>
Expand Down Expand Up @@ -116,7 +115,6 @@
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>${swagger-codegen-maven-plugin.version}</version>
<executions>
<execution>
<goals>
Expand All @@ -137,7 +135,7 @@
<supportingFilesToGenerate>ApiException.java,NotFoundException.java</supportingFilesToGenerate>
<!-- IMPORTANT! NO SPACES ALLOWED BETWEEN modelsToGenerate values-->
<modelsToGenerate>
AccountInfo,AccountInfoResp,AccountReq,AccountReqTest,AccountReqSendMoney,BlockchainInfo,BlockInfo,BlockchainState,CountResponse,CreateChildAccountResp,EmptyResponse,HealthResponse,ListResponse,QueryCountResult,QueryObject,QueryResult,TransactionInfo,TransactionInfoArrayResp,TransactionInfoResp,TxReceipt,TxRequest,CurrencyBurningTxCreationRequest,TransactionCreationRequest,TransactionCreationResponse,UnconfirmedTransactionInfo,CurrencyBurningTxParams,TransactionVerificationResponse,LastTransactionVerificationResponse,TransactionVerification
AccountInfo,AccountInfoResp,AccountReq,AccountReqTest,AccountReqSendMoney,BlockchainInfo,BlockInfo,BlockchainState,CountResponse,CreateChildAccountResp,EmptyResponse,HealthResponse,ListResponse,QueryCountResult,QueryObject,QueryResult,TransactionInfo,TransactionInfoArrayResp,TransactionInfoResp,TxReceipt,TxRequest,PublishContractReq,CallContractMethodReq,ContractListResponse,ContractDetails,ContractDetailsResponse,ContractStateResponse,ContractMethod,CallMethodResult,TransactionArrayResp,CallViewMethodReq,ResultValueResponse,MemberSpec,PropertySpec,ArgSpec,ContractSpecResponse,CurrencyBurningTxCreationRequest,TransactionCreationRequest,TransactionCreationResponse,UnconfirmedTransactionInfo,CurrencyBurningTxParams,AddressSpec,AddressSpecResponse,TransactionVerificationResponse,LastTransactionVerificationResponse,TransactionVerification,StringListResponse,ModuleSourceResponse,ModuleListResponse,AsrSpec,AsrSpecResponse,AsrMemberSpec,ContractEventsRequest,ContractEventsResponse,ContractEventDetails
</modelsToGenerate>
<configHelp>false</configHelp>
<configOptions>
Expand Down
Loading

0 comments on commit cc4bc7d

Please sign in to comment.