Skip to content

Commit 56193bc

Browse files
committed
fix: fmt
1 parent 9895897 commit 56193bc

3 files changed

Lines changed: 10 additions & 18 deletions

File tree

contracts/extensions/ext-sponsored-sbtc-transfer-many.clar

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
(define-constant err-invalid-payload (err u500))
1010

11-
(define-private (sbtc-transfer-many (recipients (list
12-
200
11+
(define-private (sbtc-transfer-many (recipients (list 200
1312
{
1413
amount: uint,
1514
sender: principal,
@@ -47,13 +46,10 @@
4746
(define-public (call (payload (buff 2048)))
4847
(let ((details (unwrap!
4948
(from-consensus-buff? {
50-
recipients: (list
51-
200
52-
{
53-
a: uint,
54-
r: principal,
55-
}
56-
),
49+
recipients: (list 200 {
50+
a: uint,
51+
r: principal,
52+
}),
5753
fees: uint,
5854
}
5955
payload

contracts/extensions/ext-sponsored-send-many.clar

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,10 @@
1717
(define-public (call (payload (buff 2048)))
1818
(let ((details (unwrap!
1919
(from-consensus-buff? {
20-
recipients: (list
21-
200
22-
{
23-
ustx: uint,
24-
to: principal,
25-
}
26-
),
20+
recipients: (list 200 {
21+
ustx: uint,
22+
to: principal,
23+
}),
2724
fees: uint,
2825
}
2926
payload

contracts/smart-wallet-endpoint.clar

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@
6666
(define-public (sbtc-transfer-many-sponsored
6767
(sm <wallet-trait>)
6868
(details {
69-
recipients: (list
70-
11
69+
recipients: (list 11
7170
{
7271
;; Amount in sats.
7372
a: uint,

0 commit comments

Comments
 (0)