SHOWING: First 60
"enviam mais satoshis nas entradas do que são recebidos pelas saídas, então "
"para transformar nossa transação em uma que paga taxas, removeremos a segunda saída:"
#: src/faq.md:73
msgid ""
"```\n"
"[2] [1] [3] → [4]\n"
"```"
msgstr ""
"```\n"
"[2] [1] [3] → [4]\n"
"```"
#: src/faq.md:75
msgid "The satoshis "
msgstr "Os satoshis "
#: src/faq.md:75
msgid "e"
msgstr "e"
#: src/faq.md:75
msgid " and "
msgstr " & "
#: src/faq.md:75
msgid "f"
msgstr "f"
#: src/faq.md:75
msgid " now have nowhere to go in the outputs:"
msgstr " agora não têm para onde ir nas saídas:"
#: src/faq.md:78
msgid ""
"```\n"
"[a b] [c] [d e f] → [a b c d]\n"
"```"
msgstr ""
"```\n"
"[a b] [c] [d e f] → [a b c d]\n"
"```"
#: src/faq.md:80
msgid ""
"So they go to the miner who mined the block as fees. [The "
"BIP](https://github.com/ordinals/ord/blob/master/bip.mediawiki) has the "
"details, but in short, fees paid by transactions are treated as extra inputs "
"to the coinbase transaction, and are ordered how their corresponding "
"transactions are ordered in the block. The coinbase transaction of the block "
#45,021,791text}
#[test]
fn inscriptions_page_has_next_and_previous() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);
let (a, _) = inscribe(&rpc_server);
let (b, _) = inscribe(&rpc_server);
let (c, _) = inscribe(&rpc_server);
TestServer::spawn_with_args(&rpc_server, &[]).assert_response_regex(
format!("/inscription/{b}"),
format!(
".*<h1>Inscription 1</h1>.*
<div class=inscription>
<a class=prev href=/inscription/{a}>❮</a>
<iframe .* src=/preview/{b}></iframe>
<a class=next href=/inscription/{c}>❯</a>
</div>.*",
),
);
}
#[test]
fn expected_sat_time_is_rounded() {
let rpc_server = test_bitcoincore_rpc::spawn();
TestServer::spawn_with_args(&rpc_server, &[]).assert_response_regex(
"/sat/2099999997689999",
r".*<dt>timestamp</dt><dd><time>.* \d+:\d+:\d+ UTC</time> \(expected\)</dd>.*",
);
}
#[test]
#[ignore]
fn server_runs_with_rpc_user_and_pass_as_env_vars() {
let rpc_server = test_bitcoincore_rpc::spawn();
rpc_server.mine_blocks(1);
let tempdir = TempDir::new().unwrap();
#44,992,244text