-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '#17-substreams' of https://github.com/LimeChain/Fruzhin …
…into #17-substreams
- Loading branch information
Showing
8 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/com/limechain/network/protocol/warp/WarpSync.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.limechain.network.protocol.warp.dto; | ||
|
||
public class WarpSync { | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/limechain/network/protocol/warp/WarpSyncController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package com.limechain.network.protocol.warp;public class WarpSyncController { | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/limechain/network/protocol/warp/WarpSyncProtocol.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package com.limechain.network.protocol.warp;public class WarpSyncProtocol { | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/limechain/network/protocol/warp/WarpSyncService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package com.limechain.network.protocol.warp;public class WarpSyncService { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/com/limechain/network/protocol/warp/dto/WarpSyncFragment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.limechain.network.protocol.warp; | ||
|
||
public class WarpSyncFragment { | ||
String scaleEncodedHeader; | ||
String scaleEncodedJustification; | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/limechain/network/protocol/warp/dto/WarpSyncRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package com.limechain.network.protocol.warp.dto;public class WarpSyncRequest { | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/limechain/network/protocol/warp/dto/WarpSyncResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.limechain.network.protocol.warp; | ||
|
||
import com.limechain.network.protocol.warp.dto.WarpSyncFragment; | ||
|
||
public class WarpSyncResponse { | ||
WarpSyncFragment[] fragments; | ||
boolean isFinished; | ||
} | ||
|
||
|
2 changes: 2 additions & 0 deletions
2
src/test/java/com/limechain/network/protocol/warp/WarpSyncTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package com.limechain.network.protocol.warp;public class WarpSyncTest { | ||
} |