Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
♻️ Update interop examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ishantiw committed Feb 19, 2024
1 parent 38f7e4c commit 14d041e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"system": {
"dataPath": "~/.lisk/pos-mainchain-node-one",
"logLevel": "info"
"dataPath": "~/.lisk/mainchain-node-one",
"logLevel": "debug",
"keepEventsForHeights": -1,
"keepInclusionProofsForHeights": -1,
"inclusionProofKeys": [
"83ed0d250000160811fdaf692ba77eabfbfc3a6bb3c4cf6a87beafd28cfe90b5dc64cb20ab46"
]
},
"rpc": {
"modes": ["ipc"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"system": {
"dataPath": "~/.lisk/pos-mainchain-node-two",
"logLevel": "info"
"dataPath": "~/.lisk/mainchain-node-two",
"logLevel": "debug",
"keepEventsForHeights": -1,
"keepInclusionProofsForHeights": -1,
"inclusionProofKeys": [
"83ed0d250000ac894ab085f50b81fe000e99ccb27e5543de69f63d4f9105daab15dce90f81b3"
]
},
"rpc": {
"modes": ["ipc"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
{
"system": {
"dataPath": "~/.lisk/pos-mainchain-fast",
"keepEventsForHeights": -1,
"keepInclusionProofsForHeights": -1,
"inclusionProofKeys": [
"83ed0d250000160811fdaf692ba77eabfbfc3a6bb3c4cf6a87beafd28cfe90b5dc64cb20ab46"
],
"logLevel": "info"
},
"rpc": {
"modes": ["ipc"],
"port": 7881,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"system": {
"dataPath": "~/.lisk/pos-sidechain-example-one",
"keepEventsForHeights": 300,
"logLevel": "info"
"logLevel": "info",
"keepInclusionProofsForHeights": -1,
"inclusionProofKeys": [
"83ed0d250000fb5e512425fc9449316ec95969ebe71e2d576dbab833d61e2a5b9330fd70ee02"
]
},
"rpc": {
"modes": ["ipc"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"system": {
"dataPath": "~/.lisk/pos-sidechain-example-two",
"keepEventsForHeights": 300,
"logLevel": "info"
"logLevel": "info",
"keepInclusionProofsForHeights": -1,
"inclusionProofKeys": [
"83ed0d250000fb5e512425fc9449316ec95969ebe71e2d576dbab833d61e2a5b9330fd70ee02"
]
},
"rpc": {
"modes": ["ipc"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ export class BlockEventHandler {
if (ccuSubmitResult) {
this._lastSentCCUTxID = ccuSubmitResult;
// If CCU was sent successfully then save the lastSentCCM if any
// TODO: Add function to check on the receiving chain whether last sent CCM was accepted or not
if (computedCCUParams.lastCCMToBeSent) {
this._lastSentCCM = computedCCUParams.lastCCMToBeSent;
}
Expand Down

0 comments on commit 14d041e

Please sign in to comment.