Hi,
I've been trying to send larger metadata on my blockchain, but it keeps being cut at 4096B.
To send larger hex strings, I followed the Creating data streams tutorial and I changed the params.dat file right after creating the blockchain and before launching it with -daemon. I edited the following fields to maximum :
max-std-op-return-size =8388608
maximum-block-size=1000000000
max-std-tx-size=10000000
max-std-element-size=32768
max-std-op-drops-count=100
I also enabled the following fields by marking them true :
anyone-can-connect ; anyone-can-send ; anyone-can-receive ; anyone-can-issue ; anyone-can-mine ; anyone-can-activate ; anyone-can-admin
I can tell that my modifications have been taken into account since the params.dat file is updated on both my nodes after I launch them and I no longer need to grant send, receive, etc. to my addresses.
Any clue as to why my metadata always gets cut at 4096 ?
Thanks