]> git.codecow.com Git - libnemo.git/commitdiff
Formatting.
authorChris Duncan <chris@zoso.dev>
Wed, 20 Aug 2025 20:59:40 +0000 (13:59 -0700)
committerChris Duncan <chris@zoso.dev>
Wed, 20 Aug 2025 20:59:40 +0000 (13:59 -0700)
src/lib/account.ts
src/main.ts

index f624d0b55e85974d550d2866e6589a6345199949..bddbafa06e62c728b2bc7a0359d4d5a96ea6ac97 100644 (file)
@@ -265,8 +265,8 @@ export class Account {
        }\r
 \r
        /**\r
-       * Validates a Nano address with 'nano' and 'xrb' prefixes\r
-       *       rived from https://github.com/alecrios/nano-address-validator\r
+       * Validates a Nano address with 'nano' and 'xrb' prefixes.\r
+       * Derived from https://github.com/alecrios/nano-address-validator\r
        *\r
        * @param {string} address - Nano address to validate\r
        * @throws Error if address is undefined, not a string, or an invalid format\r
index dd9a3d07f6874a2dcfe5373e5bf3d67ab35049cd..9acb5d5bc011e028093f72921845bef9b6d845f1 100644 (file)
@@ -2,12 +2,12 @@
 //! SPDX-License-Identifier: GPL-3.0-or-later
 
 import { Blake2b } from '#crypto'
-import { Wallet } from '#wallet'
 import { Account } from './lib/account'
 import { Block } from './lib/block'
 import { Rolodex } from './lib/rolodex'
 import { Rpc } from './lib/rpc'
 import { Tools } from './lib/tools'
+import { Wallet } from './lib/wallet'
 
 export {
        Account,