fixed strange character

This commit is contained in:
Christopher Franko 2016-05-26 13:16:58 -04:00
parent 7db52dcdb5
commit 40b4de5346

View file

@ -38,7 +38,7 @@ type ContractCaller interface {
HasCode(contract common.Address, pending bool) (bool, error) HasCode(contract common.Address, pending bool) (bool, error)
// ContractCall executes an Expanse contract call with the specified data as // 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. // the stable head of the chain.
ContractCall(contract common.Address, data []byte, pending bool) ([]byte, error) ContractCall(contract common.Address, data []byte, pending bool) ([]byte, error)
} }