-
I had an idea, I was looking to store images in base64 format on blockchain, using the I wanted to implement this, but I also wanted to know that if increasing the maximum transaction size would ultimately lead to increase in the block size itself, which in turn would affect performance or might have any other negative impacts ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, likely.
Likely. With the current implementation with |
Beta Was this translation helpful? Give feedback.
Yes, likely.
Likely. With the current implementation with
account_store_map
, nodes load all data into memory (RAM), IMHO it's not suitable for images. If you want to deal with images, I would recommend that you modify the plugin to not load all data into memory but only fetch images from disk when a client requests.