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
In case you want to build the disk image with `make deploy` (.dmg / optional), you need RSVG:
27
+
```bash
28
+
brew install librsvg
29
+
```
30
+
31
+
### Ensure `m4` is Found
32
+
After installing `m4`, it is important to note that `m4` is a `keg-only` formula in Homebrew. This means it is not symlinked into `/usr/local` by default. To make sure `m4` is available in your PATH, you'll need to link it manually with the `--force` flag:
33
+
```bash
34
+
brew link m4 --force
35
+
```
36
+
37
+
You can verify that `m4` is properly linked and available by running:
38
+
```bash
39
+
which m4
40
+
```
41
+
This should output the path to the `m4` binary, typically `/opt/homebrew/bin/m4` on Apple Silicon Macs. If you do not use the `--force` flag, `which m4` will likely output `/usr/bin/m4`, which is the system version and not the one installed via Homebrew.
42
+
43
+
### Troubleshooting `m4` Issues
44
+
If `m4` is not found even after installation and linking with `--force`, you may need to install Xcode to ensure that `m4` is recognized:
45
+
46
+
1. Install Xcode from the Mac App Store.
47
+
2. Once installed, open Xcode at least once to complete the setup.
48
+
49
+
#### Berkeley DB
27
50
It is recommended to use Berkeley DB 4.8. If you have to build it yourself, you can use [the installation script included in contrib/](https://github.com/bitcoin/bitcoin/blob/master/contrib/install_db4.sh) like so:
28
-
./contrib/install_db4.sh .
29
-
51
+
```bash
52
+
./contrib/install_db4.sh
53
+
```
30
54
from the root of the repository.
31
55
32
-
Note: You only need Berkeley DB if the wallet is enabled (see Disable-wallet mode).
33
-
34
-
35
-
Build Firo Core
36
-
------------------------
37
-
1. Build Firo-core:
38
-
39
-
Configure and build the headless Firo binaries as well as the GUI (if Qt is found).
40
-
41
-
In case you want to build the disk image with `make deploy` (.dmg / optional), by passing `--with-gui` to configure.
42
-
43
-
You can disable the GUI build by passing `--without-gui` to configure.
44
-
45
-
./autogen.sh
46
-
./configure
47
-
make
48
-
49
-
2. It is recommended to build and run the unit tests:
50
-
51
-
` make check`
56
+
*Note*: You only need Berkeley DB if the wallet is enabled (see Disable-wallet mode).
Copy file name to clipboardExpand all lines: src/qt/forms/sendcoinsentry.ui
+46-7
Original file line number
Diff line number
Diff line change
@@ -221,7 +221,7 @@
221
221
</item>
222
222
</layout>
223
223
</item>
224
-
<itemrow="4"column="0">
224
+
<itemrow="6"column="0">
225
225
<widgetclass="QLabel"name="messageLabel">
226
226
<propertyname="text">
227
227
<string>Message:</string>
@@ -231,15 +231,54 @@
231
231
</property>
232
232
</widget>
233
233
</item>
234
-
<itemrow="4"column="1">
235
-
<widgetclass="QLabel"name="messageTextLabel">
234
+
<itemrow="6"column="1">
235
+
<widgetclass="QLineEdit"name="messageTextLabel">
236
236
<propertyname="toolTip">
237
-
<string>A message that was attached to the firo: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Firo network.</string>
237
+
<string>Optional message for this transaction</string>
0 commit comments