Skip to content

Commit 97afb2a

Browse files
committed
fmt
1 parent 65c9a8f commit 97afb2a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/SovaBTC.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,9 @@ contract SovaBTC is ISovaBTC, UBTC20, Ownable, ReentrancyGuard {
209209
revert PendingTransactionExists();
210210
}
211211

212-
_pendingUserWithdrawRequests[msg.sender] =
213-
UserWithdrawRequest({amount: amount, btcGasLimit: btcGasLimit, operatorFee: operatorFee, destination: dest});
212+
_pendingUserWithdrawRequests[msg.sender] = UserWithdrawRequest({
213+
amount: amount, btcGasLimit: btcGasLimit, operatorFee: operatorFee, destination: dest
214+
});
214215

215216
emit WithdrawSignaled(msg.sender, amount, btcGasLimit, operatorFee, dest);
216217
}

0 commit comments

Comments
 (0)