From cf33596bb1b8006217346abdbfd6dddaa7fcac60 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Fri, 27 Jan 2017 10:46:01 -0800 Subject: [PATCH] Fix Context field --- types/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/plugin.go b/types/plugin.go index ab65452cce..55d3bb969f 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 {