mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-17 04:30:03 +02:00
13 lines
199 B
Go
13 lines
199 B
Go
|
|
package main
|
|
|
|
import (
|
|
eos "github.com/eoscanada/eos-go"
|
|
)
|
|
|
|
type ActionTrace struct {
|
|
Receiver eos.Name
|
|
Contract eos.AccountName
|
|
Action eos.ActionName
|
|
Data interface{}
|
|
}
|