From e6f04b6feb3c15395ef8e73c6890fb29291e73bb Mon Sep 17 00:00:00 2001 From: Ilan Gitter Date: Thu, 4 Oct 2018 16:58:49 -0400 Subject: [PATCH] update function comment to match new function name --- accounts/abi/bind/backends/simulated.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index 161e9ffba3..7d11170e48 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -159,7 +159,7 @@ func (b *SimulatedBackend) StorageAt(ctx context.Context, contract common.Addres return val[:], nil } -// Progress retrieves the progress of the client syncing with the simulated backend +// SyncProgress retrieves the progress of the client syncing with the simulated backend // Since there is no delay in synchronisation, we can assume that the simulated backend // knows the current state of the chain. func (d *SimulatedBackend) SyncProgress(ctx context.Context) (*ethereum.SyncProgress, error) {