Skip to content

Commit

Permalink
Merge branch 'dev-4.x' of github.com:syscoin/syscoin into dev-4.x
Browse files Browse the repository at this point in the history
Former-commit-id: 85e1524
  • Loading branch information
willyko committed Dec 17, 2019
2 parents 00dac97 + b73aa0c commit 7d7fde5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/good_first_issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ assignees: ''

---

The purpose of the `good first issue` label is to highlight which issues are suitable for a new contributor without a deep understanding of the codebase.

Useful skills:
#### Useful skills:

<!-- (For example, “C++11 std::thread”, “Qt5 GUI and async GUI design” or “basic understanding of Syscoin mining and the Syscoin Core RPC interface”.) -->

(For example, “C++11 std::thread”, “Qt5 GUI and async GUI design” or “basic understanding of Syscoin mining and the Syscoin Core RPC interface”.)
#### Want to work on this issue?

Want to work on this issue?
The purpose of the `good first issue` label is to highlight which issues are suitable for a new contributor without a deep understanding of the codebase.

You do not need to request permission to start working on this. You are encouraged to comment on the issue if you are planning to work on it. This will help other contributors monitor which issues are actively being addressed and is also an effective way to request assistance if and when you need it.

Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,7 @@ dnl this flag screws up non-darwin gcc even when the check fails. special-case i
if test x$TARGET_OS = xdarwin; then
AX_CHECK_LINK_FLAG([[-Wl,-dead_strip]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip"])
AX_CHECK_LINK_FLAG([[-Wl,-dead_strip_dylibs]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip_dylibs"])
AX_CHECK_LINK_FLAG([[-Wl,-bind_at_load]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-bind_at_load"])
fi

AC_CHECK_HEADERS([endian.h sys/endian.h byteswap.h stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h sys/select.h sys/prctl.h sys/sysctl.h vm/vm_param.h sys/vmmeter.h sys/resources.h])
Expand Down
1 change: 1 addition & 0 deletions src/masternodeman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,7 @@ void CMasternodeMan::PushDsegInvs(CNode* pnode, const CMasternode& mn)

void CMasternodeMan::DoFullVerificationStep(CConnman& connman)
{
LogPrint(BCLog::MN, "CMasternodeMan::DoFullVerificationStep\n");
if(activeMasternode.outpoint.IsNull()) return;
if(!masternodeSync.IsSynced()) return;

Expand Down

0 comments on commit 7d7fde5

Please sign in to comment.