Skip to content

Commit

Permalink
Merge pull request #1738 from skalenetwork/813_eth_sync
Browse files Browse the repository at this point in the history
813 eth sync
  • Loading branch information
kladkogex authored Dec 1, 2023
2 parents 8569d6f + 0aa534f commit 1419be9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions test/unittests/libethereum/SkaleHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,18 @@ class ConsensusTestStub : public ConsensusInterface {
}

uint64_t checkOracleResult( const string&
/*_receipt*/, string& /*_result */) {
/*_receipt*/, string& /*_result */) override {
return 0;
}

map< string, uint64_t > getConsensusDbUsage() const {
map< string, uint64_t > getConsensusDbUsage() const override {
return map< string, uint64_t >();
};

virtual ConsensusInterface::SyncInfo getSyncInfo() override {
return ConsensusInterface::SyncInfo{};
};

};

class ConsensusTestStubFactory : public ConsensusFactory {
Expand Down

0 comments on commit 1419be9

Please sign in to comment.