Skip to content

Commit

Permalink
fix: fixes 1445 and implementing correct interface types
Browse files Browse the repository at this point in the history
For all the connector class definitions the implementation are fixed to
follow their interface definition and to match in consistent way for all
the connectors

Closes: hyperledger-cacti#1445
Signed-off-by: Michael Courtin <michael.courtin@accenture.com>
  • Loading branch information
m-courtin committed Oct 26, 2021
1 parent df94397 commit 9ae7ca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ import {
WatchBlocksV1,
ConsistencyStrategy,
DeployContractSolidityBytecodeV1Request,
DeployContractSolidityBytecodeV1Response,
EthContractInvocationType,
InvokeContractV1Request,
InvokeContractV1Response,
Expand Down Expand Up @@ -108,7 +107,7 @@ export class PluginLedgerConnectorBesu
implements
IPluginLedgerConnector<
DeployContractSolidityBytecodeV1Request,
DeployContractSolidityBytecodeV1Response,
RunTransactionResponse,
RunTransactionRequest,
RunTransactionResponse
>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import { DeployContractSolidityBytecodeEndpoint } from "./web-services/deploy-co
import {
ConsistencyStrategy,
DeployContractV1Request,
DeployContractV1Response,
EthContractInvocationType,
InvokeContractV1Request,
InvokeContractV1Response,
Expand Down Expand Up @@ -68,7 +67,7 @@ export class PluginLedgerConnectorXdai
implements
IPluginLedgerConnector<
DeployContractV1Request,
DeployContractV1Response,
RunTransactionV1Response,
RunTransactionV1Request,
RunTransactionV1Response
>,
Expand Down

0 comments on commit 9ae7ca1

Please sign in to comment.