docs: correction du formatage dans USAGE.md - Suppression des espaces en fin de ligne dans les exemples JavaScript

This commit is contained in:
Nicolas Cantu 2025-08-25 19:36:41 +02:00
parent 01c85b360d
commit 241888b668

View File

@ -77,13 +77,13 @@ let success = lock_freezed_utxos(&wallet, &utxos);
<head> <head>
<script type="module"> <script type="module">
import init, { generate_sp_wallet } from './pkg/sdk_client.js'; import init, { generate_sp_wallet } from './pkg/sdk_client.js';
async function main() { async function main() {
await init(); await init();
const wallet = generate_sp_wallet(); const wallet = generate_sp_wallet();
console.log('Wallet généré:', wallet); console.log('Wallet généré:', wallet);
} }
main(); main();
</script> </script>
</head> </head>