Fix Context field

This commit is contained in:
Jae Kwon 2017-01-27 10:46:01 -08:00
parent c974475378
commit cf33596bb1
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ type Plugin interface {
type CallContext struct {
CallerAddress []byte // Caller's Address (hash of PubKey)
CallerAccount *Account // Caller's Account, w/ fee & TxInputs deducted
TxInput Coins // The coins that the caller wishes to spend, excluding fees
Coins Coins // The coins that the caller wishes to spend, excluding fees
}
func NewCallContext(callerAddress []byte, callerAccount *Account, coins Coins) CallContext {