When attaching transactions to the tangle using iotaproxy, the posted tag is not correct.
In the official implementation, the tag is only overridden with the obsoleteTag if the tag is not set. When i change line 169 of ccurlprovider.js to
txObject.tag = txObject.tag || txObject.obsoleteTag;
It works correctly. Don't know if there are other complications by doing so.
When attaching transactions to the tangle using iotaproxy, the posted tag is not correct.
In the official implementation, the tag is only overridden with the obsoleteTag if the tag is not set. When i change line 169 of ccurlprovider.js to
txObject.tag = txObject.tag || txObject.obsoleteTag;It works correctly. Don't know if there are other complications by doing so.