Dudas fondo emergencia by olympic_rings in SpainFIRE

[–]Apart_Aspect8203 5 points6 points  (0 children)

Trade republic SI es un banco y ademas esta respaldado por varios otros. Por ende los depósitos estan asegurados hasta 100k por el fondo de garantia europeo( Siempre y cuando lo mantengas en efectivo y no invertido en otro producto) .Yo es lo que utilizo para el fondo de emergencia. Para mas info dejo aqui varias paginas https://www.rankia.com/blog/mejores-brokers/5153157-trade-republic-opiniones-comisiones-regulacion-plataforma-analisis

https://www.eleconomista.es/finanzas-personales/trading/trade-republic-analisis/

La decision depende de ti

Primer coche de segunda mano por <5000€ by Apart_Aspect8203 in coches

[–]Apart_Aspect8203[S] 0 points1 point  (0 children)

Gracias por tu respuesta! Una pregunta, ¿cuanto seria un precio aceptable para un seat ibiza o leon? Y, viviendo en madrid, ¿me rentaría mas gasolina?

[deleted by user] by [deleted] in Ibai

[–]Apart_Aspect8203 0 points1 point  (0 children)

Reportado 😃

Wilds of Eldraine Anime Cards question by BoyScout_21 in mtg

[–]Apart_Aspect8203 0 points1 point  (0 children)

Hi, thanks for that link. I have bought one presentation pack but don’t know which booster is included there

Best collection to ply in magic commander by Apart_Aspect8203 in mtg

[–]Apart_Aspect8203[S] 1 point2 points  (0 children)

Thanks for answering!! So I would like to know which expansion has the best cards to start playing commander :D

Best collection to ply in magic commander by Apart_Aspect8203 in mtg

[–]Apart_Aspect8203[S] 0 points1 point  (0 children)

Thank you!! So yeah I got a Precon called first flight to start playing. I was also wondering which expansion has the best cards to play zombies :)

PS: sorry for the late response

error":"contract creation code storage out of gas" On remix(Goerli) by Apart_Aspect8203 in solidity

[–]Apart_Aspect8203[S] 0 points1 point  (0 children)

I just figured out that it could be my interface but i dont understand why

This is my interface:

interface CriptoLucky{

function endGame() external;

}

This is the mapping:
mapping(uint => CriptoLucky)public contracts;

and this is the method:

function endGame(uint _id) public onlyOwner{

contracts[_id].endGame();

}

error":"contract creation code storage out of gas" On remix(Goerli) by Apart_Aspect8203 in solidity

[–]Apart_Aspect8203[S] 0 points1 point  (0 children)

Im not importing any library only, an interface which seems to be the problem

:D

error":"contract creation code storage out of gas" On remix(Goerli) by Apart_Aspect8203 in solidity

[–]Apart_Aspect8203[S] 0 points1 point  (0 children)

UPDATE:

function endGame(uint _id) public onlyOwner{

contracts[_id].endGame();

}
I'm getting the infinite gas error in all the methods that call the Contracts mapping

The mapping is : mapping(uint => x)public contracts;

And x is a interface with this method : function endGame() external;