|
655 | 655 | </div>
|
656 | 656 | </b-card-body>
|
657 | 657 |
|
| 658 | + <!-- DATACARRIER --> |
| 659 | + <b-card-body class="subsetting-body px-2 px-sm-3"> |
| 660 | + <div> |
| 661 | + <div class="d-flex justify-content-between align-items-center"> |
| 662 | + <div class="flex-sm-grow-1"> |
| 663 | + <label class="mb-0" for="mempool"> |
| 664 | + <p class="subsetting-title font-weight-bold mb-0 mr-1"> |
| 665 | + Relay transaction with embedded data |
| 666 | + <span class="subsetting-config-name text-monospace font-weight-normal d-block"> |
| 667 | + datacarrier |
| 668 | + </span> |
| 669 | + </p> |
| 670 | + </label> |
| 671 | + </div> |
| 672 | + <div> |
| 673 | + <toggle-switch |
| 674 | + id="datacarrier" |
| 675 | + class="align-self-center" |
| 676 | + :on="settings.datacarrier" |
| 677 | + @toggle="status => (settings.datacarrier = status)" |
| 678 | + ></toggle-switch> |
| 679 | + </div> |
| 680 | + </div> |
| 681 | + <small class="w-lg-75 d-block text-muted mt-1"> |
| 682 | + Relay and mine data carrier transactions. |
| 683 | + </small> |
| 684 | + </div> |
| 685 | + </b-card-body> |
| 686 | + |
| 687 | + <!-- DATACARRIERSIZE --> |
| 688 | + <b-card-body class="subsetting-body px-2 px-sm-3"> |
| 689 | + <div> |
| 690 | + <div class="d-flex justify-content-between align-items-center"> |
| 691 | + <div class="flex-sm-grow-1"> |
| 692 | + <label class="mb-0" for="mempoolexpiry"> |
| 693 | + <p class="subsetting-title font-weight-bold mb-0 mr-1"> |
| 694 | + Maximum size of relayed transactions with embedded data |
| 695 | + <span class="subsetting-config-name text-monospace font-weight-normal d-block"> |
| 696 | + datacarriersize |
| 697 | + </span> |
| 698 | + </p> |
| 699 | + </label> |
| 700 | + </div> |
| 701 | + <div class="input-container ml-1"> |
| 702 | + <b-input-group append="bytes"> |
| 703 | + <b-form-input |
| 704 | + class="advanced-settings-input" |
| 705 | + id="datacarriersize" |
| 706 | + type="number" |
| 707 | + v-model="settings.datacarriersize" |
| 708 | + number |
| 709 | + ></b-form-input> |
| 710 | + </b-input-group> |
| 711 | + </div> |
| 712 | + </div> |
| 713 | + <small class="w-lg-75 d-block text-muted mt-1"> |
| 714 | + Adjust the maximum size of relayed transactions containing arbitrary data. |
| 715 | + Note: datacarrier takes precedence over datacarriersize. |
| 716 | + </small> |
| 717 | + </div> |
| 718 | + </b-card-body> |
| 719 | + |
| 720 | + <!-- PERMITBAREMULTISIG --> |
| 721 | + <b-card-body class="subsetting-body px-2 px-sm-3"> |
| 722 | + <div> |
| 723 | + <div class="d-flex justify-content-between align-items-center"> |
| 724 | + <div class="flex-sm-grow-1"> |
| 725 | + <label class="mb-0" for="mempool"> |
| 726 | + <p class="subsetting-title font-weight-bold mb-0 mr-1"> |
| 727 | + Relay old type of multisig transaction |
| 728 | + <span class="subsetting-config-name text-monospace font-weight-normal d-block"> |
| 729 | + permitbaremultisig |
| 730 | + </span> |
| 731 | + </p> |
| 732 | + </label> |
| 733 | + </div> |
| 734 | + <div> |
| 735 | + <toggle-switch |
| 736 | + id="permitbaremultisig" |
| 737 | + class="align-self-center" |
| 738 | + :on="settings.permitbaremultisig" |
| 739 | + @toggle="status => (settings.permitbaremultisig = status)" |
| 740 | + ></toggle-switch> |
| 741 | + </div> |
| 742 | + </div> |
| 743 | + <small class="w-lg-75 d-block text-muted mt-1"> |
| 744 | + Relay non-P2SH multisig. |
| 745 | + </small> |
| 746 | + </div> |
| 747 | + </b-card-body> |
| 748 | + |
658 | 749 | <!-- PRUNE -->
|
659 | 750 | <b-card-body class="subsetting-body px-2 px-sm-3">
|
660 | 751 | <div>
|
|
0 commit comments