*: switch from fixed8 to int64 in (Blockchain).CalculateClaimable

This commit is contained in:
Anna Shaleva 2020-06-29 16:09:23 +03:00
parent 73b630db9b
commit 0aaaf7f787
5 changed files with 10 additions and 10 deletions

View file

@ -31,7 +31,7 @@ func (chain testChain) ApplyPolicyToTxSet([]*transaction.Transaction) []*transac
func (chain testChain) GetConfig() config.ProtocolConfiguration {
panic("TODO")
}
func (chain testChain) CalculateClaimable(int64, uint32, uint32) util.Fixed8 {
func (chain testChain) CalculateClaimable(int64, uint32, uint32) int64 {
panic("TODO")
}