10 lines
166 B
Go
10 lines
166 B
Go
package store
|
|
|
|
import "math/big"
|
|
|
|
// TODO: specify store for staking mechanism
|
|
type StakeTokenInfo struct {
|
|
TotalTokensStaked *big.Int
|
|
NodeTokensStaked *big.Int
|
|
}
|