@@ -1344,7 +1344,7 @@ static RPCHelpMan combinepsbt()
1344
1344
1345
1345
CDataStream ssTx (SER_NETWORK, PROTOCOL_VERSION);
1346
1346
ssTx << merged_psbt;
1347
- return EncodeBase64 (MakeUCharSpan ( ssTx) );
1347
+ return EncodeBase64 (ssTx);
1348
1348
},
1349
1349
};
1350
1350
}
@@ -1483,7 +1483,7 @@ static RPCHelpMan createpsbt()
1483
1483
CDataStream ssTx (SER_NETWORK, PROTOCOL_VERSION);
1484
1484
ssTx << psbtx;
1485
1485
1486
- return EncodeBase64 (MakeUCharSpan ( ssTx) );
1486
+ return EncodeBase64 (ssTx);
1487
1487
},
1488
1488
};
1489
1489
}
@@ -1552,7 +1552,7 @@ static RPCHelpMan converttopsbt()
1552
1552
CDataStream ssTx (SER_NETWORK, PROTOCOL_VERSION);
1553
1553
ssTx << psbtx;
1554
1554
1555
- return EncodeBase64 (MakeUCharSpan ( ssTx) );
1555
+ return EncodeBase64 (ssTx);
1556
1556
},
1557
1557
};
1558
1558
}
@@ -1643,7 +1643,7 @@ static RPCHelpMan utxoupdatepsbt()
1643
1643
1644
1644
CDataStream ssTx (SER_NETWORK, PROTOCOL_VERSION);
1645
1645
ssTx << psbtx;
1646
- return EncodeBase64 (MakeUCharSpan ( ssTx) );
1646
+ return EncodeBase64 (ssTx);
1647
1647
},
1648
1648
};
1649
1649
}
@@ -1739,7 +1739,7 @@ static RPCHelpMan joinpsbts()
1739
1739
1740
1740
CDataStream ssTx (SER_NETWORK, PROTOCOL_VERSION);
1741
1741
ssTx << shuffled_psbt;
1742
- return EncodeBase64 (MakeUCharSpan ( ssTx) );
1742
+ return EncodeBase64 (ssTx);
1743
1743
},
1744
1744
};
1745
1745
}
0 commit comments