Plugins and AccountCaches

This commit is contained in:
Jae Kwon
2016-03-24 12:17:26 -07:00
parent 83e7c9dab1
commit 964a4cfd50
7 changed files with 115 additions and 22 deletions
+28
View File
@@ -0,0 +1,28 @@
package types
import (
tmsp "github.com/tendermint/tmsp/types"
)
// Value is any floating value. It must be given to someone.
// Gas is a pointer to remainig gas. Decrement as you go,
// if any gas is left the user is
type Plugin interface {
CallTx(ctx CallContext, txBytes []byte) tmsp.Result
}
type CallContext struct {
Cache AccountCacher
Caller *Account
Value int64
Gas *int64
}
func NewCallContext(cache AccountCacher, caller *Account, value int64, gas *int64) CallContext {
return CallContext{
Cache: cache,
Caller: caller,
Value: value,
Gas: gas,
}
}