SHOWING: First 60
msgid "Donate"
msgstr "Пожертвование"
#: src/SUMMARY.md:11
msgid "Guides"
msgstr "Руководства"
#: src/SUMMARY.md:12
msgid "Explorer"
msgstr "Проводник"
#: src/SUMMARY.md:14 src/guides/sat-hunting.md:1
msgid "Sat Hunting"
msgstr "Охота на сатоши"
#: src/SUMMARY.md:15 src/guides/collecting.md:1
msgid "Collecting"
msgstr "Коллекционирование"
#: src/SUMMARY.md:16 src/guides/sat-hunting.md:239
msgid "Sparrow Wallet"
msgstr "Sparrow Wallet"
#: src/SUMMARY.md:17 src/guides/testing.md:1
msgid "Testing"
msgstr "Тестирование"
#: src/SUMMARY.md:18 src/guides/moderation.md:1
msgid "Moderation"
msgstr "Модерация"
#: src/SUMMARY.md:19 src/guides/reindexing.md:1
msgid "Reindexing"
msgstr "Переиндексация"
#: src/SUMMARY.md:20
msgid "Bounties"
msgstr "Награды"
#: src/SUMMARY.md:21
msgid "Bounty 0: 100,000 sats Claimed!"
msgstr "Награда 0: 100 000 sats Собрано!"
#: src/SUMMARY.md:22
msgid "Bounty 1: 200,000 sats Claimed!"
msgstr "Награда 1: 200 000 sats Собрано!"
#: src/SUMMARY.md:23
msgid "Bounty 2: 300,000 sats Claimed!"
#45,000,589textuse super::*;
#[derive(Debug, PartialEq, Copy, Clone, Eq, PartialOrd, Ord, Default)]
pub struct SatPoint {
pub outpoint: OutPoint,
pub offset: u64,
}
impl Display for SatPoint {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "{}:{}", self.outpoint, self.offset)
}
}
impl Encodable for SatPoint {
fn consensus_encode<S: io::Write + ?Sized>(&self, s: &mut S) -> Result<usize, io::Error> {
let len = self.outpoint.consensus_encode(s)?;
Ok(len + self.offset.consensus_encode(s)?)
}
}
impl Decodable for SatPoint {
fn consensus_decode<D: io::Read + ?Sized>(
d: &mut D,
) -> Result<Self, bitcoin::consensus::encode::Error> {
Ok(SatPoint {
outpoint: Decodable::consensus_decode(d)?,
offset: Decodable::consensus_decode(d)?,
})
}
}
impl Serialize for SatPoint {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.collect_str(self)
}
}
impl<'de> Deserialize<'de> for SatPoint {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
#44,992,396text
#: src/guides/collecting/sparrow-wallet.md:61
msgid ""
"Initially this transaction may have an \"Unconfirmed\" status, and you will need to wait for it to be mined into a bitcoin block before it is fully received."
msgstr ""
"Первоначально эта транзакция может иметь статус \"Unconfirmed\", и вам придется подождать, пока она будет добыта в блокчейне биткоина, прежде чем она будет "
"полностью получена."
#: src/guides/collecting/sparrow-wallet.md:63
msgid ""
msgstr ""
#: src/guides/collecting/sparrow-wallet.md:65
msgid ""
"To track the status of your transaction you can right-click on it, select `Copy Transaction ID` and then paste that transaction id into [mempool.space]"
"(https://mempool.space)."
msgstr ""
"Для отслеживания статуса транзакции можно щелкнуть на ней правой кнопкой мыши, выбрать `Copy Transaction ID` и затем вставить этот ID транзакции в [mempool."
"space](https://mempool.space)."
#: src/guides/collecting/sparrow-wallet.md:67
#44,989,453text