-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
80 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
back-end-projects/Explorer/src/main/java/com/github/ontio/model/dto/StakingRewardsDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.github.ontio.model.dto; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class StakingRewardsDto { | ||
private String address; | ||
private String publicKey; | ||
private String rewards; | ||
private int round; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
back-end-projects/Explorer/src/main/resources/db/migration/V1.87__tbl_income_info.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE `tbl_income_info` | ||
( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`peer_pub_key` char(80) NOT NULL, | ||
`address` char(80) NOT NULL, | ||
`ong_income` varchar(50) DEFAULT NULL, | ||
`staking_pos` int(11) DEFAULT NULL, | ||
`cycle` int(11) NOT NULL, | ||
PRIMARY KEY (`id`) USING BTREE, | ||
KEY `idx_peer_address` (`peer_pub_key`,`address`) USING BTREE, | ||
KEY `idx_address` (`address`) USING BTREE | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
back-end-projects/OntSynHandler/src/main/java/com/github/ontio/mapper/CommonMapper.java
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
...nd-projects/OntSynHandler/src/main/java/com/github/ontio/model/common/GovernanceInfo.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
...end-projects/OntSynHandler/src/main/java/com/github/ontio/schedule/NodeScheduledTask.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
back-end-projects/OntSynHandler/src/main/java/com/github/ontio/service/NodeService.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.