From 311c7beee0d4c26a7649584cdcb64c7c72704970 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sat, 6 Jul 2024 22:56:03 +0300 Subject: [PATCH 1/4] fix job_manager.go Signed-off-by: Elias Rad <146735585+nnsW3@users.noreply.github.com> --- baseapp/job_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseapp/job_manager.go b/baseapp/job_manager.go index f6215cb..cb2ab78 100644 --- a/baseapp/job_manager.go +++ b/baseapp/job_manager.go @@ -35,7 +35,7 @@ type JobManager struct { producerCfg *worker.PoolConfig jobProducers *worker.Pool - // Job executors are a pool of workers that execute jobs. These workers + // Job executors are a pool of workers who execute jobs. These workers // are fed jobs by the job producers. executorCfg *worker.PoolConfig jobExecutors *worker.Pool From d9411e789b3e06fdee9125fe38bbcdbd013322e7 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sat, 6 Jul 2024 22:57:55 +0300 Subject: [PATCH 2/4] fix erc20.abigen.go Signed-off-by: Elias Rad <146735585+nnsW3@users.noreply.github.com> --- contracts/bindings/erc20.abigen.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/bindings/erc20.abigen.go b/contracts/bindings/erc20.abigen.go index 9872867..65b36d5 100644 --- a/contracts/bindings/erc20.abigen.go +++ b/contracts/bindings/erc20.abigen.go @@ -391,7 +391,7 @@ func (it *IERC20ApprovalIterator) Next() bool { } } -// Error returns any retrieval or parsing error occurred during filtering. +// Error returns any retrieval or parsing error that occurred during filtering. func (it *IERC20ApprovalIterator) Error() error { return it.fail } @@ -403,7 +403,7 @@ func (it *IERC20ApprovalIterator) Close() error { return nil } -// IERC20Approval represents a Approval event raised by the IERC20 contract. +// IERC20Approval represents an Approval event raised by the IERC20 contract. type IERC20Approval struct { Owner common.Address Spender common.Address From 8df221b84c9ee8d33a910c1ef216d5bbf63e6254 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sat, 6 Jul 2024 22:58:27 +0300 Subject: [PATCH 3/4] fix README.md Signed-off-by: Elias Rad <146735585+nnsW3@users.noreply.github.com> --- telemetry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telemetry/README.md b/telemetry/README.md index 551bf49..cc879a1 100644 --- a/telemetry/README.md +++ b/telemetry/README.md @@ -11,7 +11,7 @@ Please see the following subsections for detailed configurations. ### Configuration -The first step is adding a section in your config file. See following subsection for details. The +The first step is adding a section in your config file. See the following subsection for details. The source code defining those configs can be found in [config.go](./datadog/config.go). #### Datadog Configs From d7496808e3683dfc144eb692a27f73849ce92842 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sat, 6 Jul 2024 22:58:50 +0300 Subject: [PATCH 4/4] fix README.md Signed-off-by: Elias Rad <146735585+nnsW3@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2ba37c6..eed1a0b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A framework for building off-chain services for EVM chains. ## 🚧 WARNING: UNDER CONSTRUCTION 🚧 -This project is work in progress and subject to frequent changes as we are still working on wiring up the final system. +This project is a work in progress and subject to frequent changes as we are still working on wiring up the final system. It has not been audited for security purposes and should not be used in production yet. @@ -16,4 +16,4 @@ It has not been audited for security purposes and should not be used in producti POOL-->EXEC1; POOL-->EXEC2; POOL-->EXEC3; -``` \ No newline at end of file +```