core: update System.Blockchain.GetTransactionHeight interop

Update System.Blockchain.GetTransactionHeight and removed
Neo.Blockchain.GetTransactionHeight interop as we don't need it.
This commit is contained in:
Anna Shaleva 2020-06-08 18:40:01 +03:00
parent 53655c5ac2
commit 1e63ae4b3f
4 changed files with 5 additions and 5 deletions

View file

@ -67,7 +67,7 @@ func GetTransaction(hash []byte) Transaction {
// GetTransactionHeight returns transaction's height (index of the block that
// includes it) by the given ID (256 bit in BE format represented as a slice of
// 32 bytes). This function uses `Neo.Blockchain.GetTransactionHeight` syscall.
// 32 bytes). This function uses `System.Blockchain.GetTransactionHeight` syscall.
func GetTransactionHeight(hash []byte) int {
return 0
}