Skip to content

Commit

Permalink
Add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
madrazzl3 committed Dec 22, 2021
1 parent de288fe commit 9abd7a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/Stratis/Private/WhitelistedSmartContracts.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "WhitelistedSmartContracts.h"

#include "Projects.h"

#define PLUGIN_NAME "Stratis"

// https://github.com/stratisproject/CirrusSmartContracts/tree/master/Mainnet/DAOContract
Expand Down Expand Up @@ -65,8 +67,7 @@ FString UWhitelistedSmartContracts::loadContractCodeByName(const TCHAR* contract

FString result;

if (FPaths::FileExists(contractFile))
{
if (FPaths::FileExists(contractFile)) {
FFileHelper::LoadFileToString(result, *contractFile, FFileHelper::EHashOptions::None);
}

Expand Down

0 comments on commit 9abd7a3

Please sign in to comment.