You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: move CGovernanceVote inline methods to header for wallet linkage
The methods GetSignatureString() and GetSignatureHash() were only available
in libbitcoin_node.a but were being called from wallet.cpp. This caused
undefined reference errors when linking dash-wallet since it doesn't link
against libbitcoin_node.
Moving these simple methods to the header as inline functions resolves
the linking issue without requiring wallet binaries to link against the
entire node library.
0 commit comments