Skip to content

Commit

Permalink
fix ticket price
Browse files Browse the repository at this point in the history
  • Loading branch information
Bin0J committed Nov 23, 2018
1 parent 515b7dd commit b0f62dd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions common/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,11 @@ func ParseBig256(s string) (*big.Int, bool) {
return bigint, ok
}

// TicketPrice place holder for ticket price
// TicketPrice place holder for ticket price
func TicketPrice() *big.Int {
v, _ := ParseBig256( "21000000000000000000" ) // 21 x 10 ^ 18
return v
// v, _ := ParseBig256( "21000000000000000000" ) // 21 x 10 ^ 18
// return v
return new(big.Int).Mul(big.NewInt(200), big.NewInt(100000000000000000))
}

// FSNCallParam wacom
Expand Down

0 comments on commit b0f62dd

Please sign in to comment.