diff --git a/types/plugin.go b/types/plugin.go index ab65452cc..55d3bb969 100644 --- a/types/plugin.go +++ b/types/plugin.go @@ -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 {