e720f5d3a6
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
17 lines
347 B
Go
17 lines
347 B
Go
package types
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
|
"github.com/ipfs/go-hamt-ipld"
|
|
)
|
|
|
|
type VMContext interface {
|
|
Message() *Message
|
|
Ipld() *hamt.CborIpldStore
|
|
Send(to address.Address, method string, value *big.Int, params []interface{}) ([][]byte, uint8, error)
|
|
BlockHeight() uint64
|
|
GasUsed() BigInt
|
|
}
|