-
Nizumzen
Is it possible to have multiple wallets under one node? I have an idea where people can donate to authors on a central database like Good Reads or IMDB. So basically I want everyone to have a wallet when they register on my site. Is this possible with Monero?
-
moneromooo
If you mean "can several wallets use RPC on the same node", then yes.
-
moneromooo
Also, if you have N wallets, each tx will have to be scanned by all of them. If they all run on the same machine, it'll be heavy. Something like mymonero might help there.
-
Nizumzen
Cool thanks for the info
-
sina_66666
Hi
-
chrissssz
hi y'all
-
chrissssz
searching for a localbtc helper/mod/admin
-
moneromooo
Monero is a cryptocurrency, but it's not bitcoin. They are distinct cryptocurrencies, like euro and US dollar. While there's a user overlap, you want to ask in a bitcoin channel to have a chance of reaching who you need to reach.
-
chrissssz
I know but none reply and they give me a 24h deadline that I can't respect so...
-
chrissssz
i was buying btc to convert to xmr but I'm in a controversy right now
-
mmxxx[m]
?
-
mmxxx[m]
Explain
-
azy
you mean localbitcoins.com admin?
-
chrissssz
yes
-
chrissssz
azy yes
-
azy
try the website? you'll get no help with that on irc in the monero channel lol
-
chrissssz
mmxxx[m] i have a 2 controversy open, I sent the money but they keep saying that I sent only 2 and 3 euros, now they ask for a video of me entering my bank account and show the transaction , the problem is that today my account got suspended for address verification and it will take 4 days, the deadline is 24 hours
-
chrissssz
lol I know but no one from localbtc is helping me
-
mmxxx[m]
<chrissssz "lol I know but no one from local"> Sounds horrible. I haven't used localbitcoin in years.
-
mmxxx[m]
you either explain them the situation or get the bank to speed up the process
-
mmxxx[m]
* you either explain the situation to localbtc or get the bank to speed up the process
-
chrissssz
the live chat support of my bank open tomorrow, I already written to localbtc but no reply, I tried reddit, Facebook, open a ticket, sending mails. but nothing
-
chrissssz
the support is too shitty for a company like localbtc
-
mmxxx[m]
Indeed it is
-
th4ll
Hi I am new here
-
Shizlet9
Welcome th4ll
-
th4ll
I have some question regarding accept monero as a payment for my exporting business plan
-
Shizlet9
What is it?
-
th4ll
How can I provide security for my customer?
-
Shizlet9
What do you mean by security for your customer? Can you be more specific?
-
th4ll
you know to make sure they not getting scam
-
Shizlet9
Scammed in what way? You say you want to accept payment in Monero for your business. So your cutomers would pay you with Monero. Are you asking how they can get Monero to pay you without getting scammed?
-
th4ll
is there a service where I can deposit some fund as a security to ensure customer that they are not getting scam
-
th4ll
no no how do I make my customer know that I am not a scammer
-
Shizlet9
th4ll, You want escrow for their payment to you that can be released upon delivery of the product or service?
-
th4ll
yes something like that
-
Shizlet9
th4ll, If you have an agreed upon neutral party, you can do escrow yourself with multi-sig.
-
th4ll
I dont really know much about technology lol
-
th4ll
I know how to use them but nothing more
-
ErCiccione[m]
.time
-
ErCiccione[m]
!time
-
ErCiccione[m]
alright then... what time is it in UTC?
-
moneromooo
date --utc
-
Shizlet9
th4ll, Can you arrange a 3rd party that is neutral and reliable that is agreed upon by you and the customer?
-
Shizlet9
Apparently multisig is not implemented in the GUI yet, you need to do quite a bit of CLI trickery, not the most convenient...
-
ErCiccione[m]
moneromooo: TIL. Thanks
-
th4ll
I dont understand anything code related lol
-
th4ll
OpenBazaar2 is kind of neat but I dont know who I should use to be mod
-
Shizlet9
th4ll, any escrow system still relies on trusting somebody.
-
th4ll
I know right it kind of weird to see something like this happend in a product that promising some form of security when exchange
-
th4ll
anyway atm I am not have anything better to do so I think I could be some help by translate GUI to Thai lang not promising anything btw
-
Shizlet9
th4ll, Monero does not make any promise about offering escrow or anything. It´s secure in the sense of privacy and reliability i would say.
-
LZA_Menace
alright, I've got a fully synced mainnet node and sending 'get_block_by_header_hash' RPC method is returning the following error: {"code":-5,"message":"Internal error: can't get block by hash. Hash = ea055bb3f832cc19f091121c7fa2d43b0a2b15c50b39d2301ca813d585b6beda."}
-
LZA_Menace
print_height
-
LZA_Menace
2065236y
-
LZA_Menace
s/y//
-
moneromooo
Remove the . from the hash.
-
moneromooo
Oh, might be part of the message. Let me check...
-
LZA_Menace
yeah, I checked that, I believe it's part of the string
-
moneromooo
Yeah nvm. Then make sure it's an existing block hash.
-
LZA_Menace
it is, I'm taking them from block explorers so I know they're valid
-
moneromooo
Eve tells you it's valid, so you know it's valid ? :)
-
moneromooo
Try: print_block ea055bb3f832cc19f091121c7fa2d43b0a2b15c50b39d2301ca813d585b6beda
-
moneromooo
(in monerod)
-
LZA_Menace
hmm,, Error: Unsuccessful
-
moneromooo
Then don't trust Eve. Also, make sure you're not confusing testnet/stagenet/mainnet.
-
LZA_Menace
oh, wait
-
moneromooo
My own node does not have that block fwiw.
-
LZA_Menace
I think my wires are crossed
-
LZA_Menace
tx hash != block hash
-
LZA_Menace
yeah, that's what's wrong, I'm grabbing the wrong value
-
LZA_Menace
what call should I use to retrieve block info for a given transaction hash?
-
moneromooo
get_transactions
-
moneromooo
Then get_block_by_header_hash
-
moneromooo
Or get_block_by_header_height
-
moneromooo
You get the height from get_transactions at least.
-
LZA_Menace
coolio, thanks moneromooo
-
LZA_Menace
im learning Rust and making a block explorer for fun on a Sunday :P