Skip to content

Commit

Permalink
fix: add IcactusPlugin functions
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Izaguirre <e.izaguirre.equiza@accenture.com>
  • Loading branch information
elenaizaguirre committed Nov 17, 2021
1 parent f9bfb1d commit 5e76f6e
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ class DummyPlugin {
console.log("DummyPlugin#onPluginInit() OK");
return Promise.resolve();
}
getInstanceId() {
console.log("DummyPlugin#getInstanceId() OK");
return "dummy_instance_id";
}
getPackageName() {
console.log("DummyPlugin#getPackageName() OK");
return "@hyperledger/cactus-dummy-package";
}
}

class DummyPluginFactory {
Expand Down

0 comments on commit 5e76f6e

Please sign in to comment.