Skip to content

Commit

Permalink
Update NodeInspire
Browse files Browse the repository at this point in the history
  • Loading branch information
leej1012 committed Jul 3, 2023
1 parent f87934f commit fd164b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ public class NodeInspire {
@Column(name = "current_stake")
private Long currentStake;

@Column(name = "init_pos")
private Long initPos;

@Column(name = "total_pos")
private Long totalPos;

@Column(name = "node_released_ong_incentive")
private Long nodeReleasedOngIncentive;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<result column="name" jdbcType="VARCHAR" property="name"/>
<result column="status" jdbcType="INTEGER" property="status"/>
<result column="current_stake" jdbcType="BIGINT" property="currentStake"/>
<result column="init_pos" jdbcType="BIGINT" property="initPos"/>
<result column="total_pos" jdbcType="BIGINT" property="totalPos"/>
<result column="node_released_ong_incentive" jdbcType="BIGINT" property="nodeReleasedOngIncentive"/>
<result column="node_released_ong_incentive_rate" jdbcType="VARCHAR" property="nodeReleasedOngIncentiveRate"/>
<result column="user_released_ong_incentive" jdbcType="BIGINT" property="userReleasedOngIncentive"/>
Expand All @@ -32,6 +34,8 @@
name,
status,
current_stake,
init_pos,
total_pos,
node_released_ong_incentive,
node_released_ong_incentive_rate,
user_released_ong_incentive,
Expand Down

0 comments on commit fd164b9

Please sign in to comment.