Package Details: multichain 2.1-2

Git Clone URL: https://aur.archlinux.org/multichain.git (read-only, click to copy)
Package Base: multichain
Description: MultiChain open source platform for private blockchains
Upstream URL: https://github.com/MultiChain/multichain
Licenses: GPLv3
Provides: multichain
Submitter: kragacles
Maintainer: kragacles
Last Packager: kragacles
Votes: 1
Popularity: 0.005926
First Submitted: 2021-10-01 16:16 (UTC)
Last Updated: 2023-08-18 15:30 (UTC)

Latest Comments

kragacles commented on 2023-08-18 15:32 (UTC)

Updated with your patch; thanks for the help.

amixra commented on 2023-08-15 08:35 (UTC) (edited on 2023-08-15 08:36 (UTC) by amixra)

build error was occurring following patch will do it.

diff --git a/src/core/init.h b/src/core/init.h
index f9c60d4..21480e3 100644
--- a/src/core/init.h
+++ b/src/core/init.h
@@ -8,6 +8,7 @@
#define BITCOIN_INIT_H

#include <string>
+#include <cstdint>

class CWallet;
struct mc_WalletTxs;
diff --git a/src/net/net.cpp b/src/net/net.cpp
index 4cb2373..9836330 100644
--- a/src/net/net.cpp
+++ b/src/net/net.cpp
@@ -1186,7 +1186,7 @@ void ThreadMapPort()
#else
/* miniupnpc 1.6 */
int error = 0;
-    devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
+    devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 0, &error);
#endif

struct UPNPUrls urls;

save it, you will also need to create a symlink and apply it to the project before building. Hope someone will make these changes in AUR too