GetEventNotifyByTxHash from ledger
(txHash common.Uint256)
| 98 | |
| 99 | //GetEventNotifyByTxHash from ledger |
| 100 | func GetEventNotifyByTxHash(txHash common.Uint256) (*event.ExecuteNotify, error) { |
| 101 | return ledger.DefLedger.GetEventNotifyByTx(txHash) |
| 102 | } |
| 103 | |
| 104 | //GetEventNotifyByHeight from ledger |
| 105 | func GetEventNotifyByHeight(height uint32) ([]*event.ExecuteNotify, error) { |
nothing calls this directly
no test coverage detected