From 690e47f664369d077f8177b70c1a9f7b1e65a867 Mon Sep 17 00:00:00 2001 From: ak Date: Wed, 1 May 2019 20:38:43 -0700 Subject: [PATCH] function signature --- api/service/restclientsupport/service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/service/restclientsupport/service.go b/api/service/restclientsupport/service.go index 2ac61026c..09c4c5d87 100644 --- a/api/service/restclientsupport/service.go +++ b/api/service/restclientsupport/service.go @@ -36,7 +36,7 @@ type Service struct { CallFaucetContract func(common.Address) common.Hash GetAccountBalance func(common.Address) (*big.Int, error) CreateTransactionForPlayMethod func(string, int) error - CreateTransactionForPayoutMethod func(string, int, int, string) error + CreateTransactionForPayoutMethod func(string, int, string) error } // New returns new client support service. @@ -46,7 +46,7 @@ func New( CreateTransactionForPickWinner func() error, CallFaucetContract func(common.Address) common.Hash, GetAccountBalance func(common.Address) (*big.Int, error), CreateTransactionForPlayMethod func(string, int) error, - CreateTransactionForPayoutMethod func(string, int, int, string) error) *Service { + CreateTransactionForPayoutMethod func(string, int, string) error) *Service { return &Service{ CreateTransactionForEnterMethod: CreateTransactionForEnterMethod, GetResult: GetResult,