pull down to refresh
Thatβs one way to make territories profitable π
reply
The future is bright for SN and all of its territories.
There's nothing else in the world like it.
reply
Wow. Above and beyond what I was expecting to wake up to this morning.
Thanks a bunch, k00b and team. Look forward to helping grow SN and making every territory wildly profitable as we completely obsolete Reddit.
Will those payments just come through at midnight tonight?
reply
I'll push an update that will update your balance sometime this afternoon.
If you can reply with a 1 million sat invoice, I'll send you your bug bounty out of band.
reply
Looking forward to the update.
π³ That's a very generous bounty. Thanks a million.
lightning:lnbc10m1pnj2qkepp5dxqxgazm230ltduzungg0mkq05fytf0a4nz9dr75s7v0dts2hpkqcqpjsp5sfptvqzw0zy5nx8fps0f9kwwkhlzhjuyt8wle3f8fu4hqapqhkps9q7sqqqqqqqqqqqqqqqqqqqsqqqqqysgqdqsgf6kwgrzda6kuaremqz9gxqyjw5qrzjqwryaup9lh50kkranzgcdnn2fgvx390wgj5jd07rwr3vxeje0glcll6205l5hdfg5vqqqqlgqqqqqeqqjqr3e7v3qldrylr3djk5j7nnpnyu5tkug9qc23zfscvejtkwydvr5hjttfs7y6e778e7446ka6nw7aypwuurzya8yw8avafx5ee5ykulgpyqd6p6
reply
Do you have enough liquidity for a payment that large? I've tried twice and it's failed. It might be an intermittent issue though. I'll try again in a few minutes.
@remindme in 10 minutes
reply
My bad. Low liquidity and I'm receiving with Phoenix.
I just updated my channel settings.
reply
It failed again. I'm surprised phoenix isn't creating a channel with the payment.
@remindme in 10 minutes.
reply
Yeah, I set my channel creation fee amount pretty high. It should absolutely make a channel with the payment.
reply
Is this bug reproducible only for stackers that run multiple territories?
reply
This only applies to stackers that run multiple territories. For stacker that only run one territory, this bug does not apply.
reply
Ok - relieved π
Anyway, I'll follow this thread for updates on this issue
reply
If you believe there is a bug that you've experienced otherwise though, as always, lmk.
reply
Always! You can count on me on that π
reply
Footnotes
UPDATE ... FROM
statement that increments the same row and column more than once. Each additionalUPDATE
of the row overwrites the previousUPDATE
to it, because the firstUPDATE
has not been committed when the secondUPDATE
runs (because they're in the same statement). egWITH operand (addend, id) as (values (1, 1000), (1, 1000), (1, 1000)) UPDATE my_table set my_sum = my_table.my_sum + operand.addend FROM operand WHERE my_table.id = operand.id
will only add1
tomy_table.my_sum
-- not the expected3
. β©