From 40b4de534610edfe3579031aebbd90c11773556f Mon Sep 17 00:00:00 2001 From: Christopher Franko Date: Thu, 26 May 2016 13:16:58 -0400 Subject: [PATCH] fixed strange character --- accounts/abi/bind/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/bind/backend.go b/accounts/abi/bind/backend.go index d55cceab08..77fa18cbe4 100644 --- a/accounts/abi/bind/backend.go +++ b/accounts/abi/bind/backend.go @@ -38,7 +38,7 @@ type ContractCaller interface { HasCode(contract common.Address, pending bool) (bool, error) // ContractCall executes an Expanse contract call with the specified data as -\ // the input. The pending flag requests execution against the pending block, not + // the input. The pending flag requests execution against the pending block, not // the stable head of the chain. ContractCall(contract common.Address, data []byte, pending bool) ([]byte, error) }