chaintope / glueby

[WIP] A Ruby library of smart contracts that can be used on Tapyrus.
MIT License
7 stars 10 forks source link

The value which is less than 546 in Utxo should be invalid #175

Closed Yamaguchi closed 1 year ago

Yamaguchi commented 1 year ago

The PR #174 causes the error when creating Utxo records with small values (< 546).

This PR solves this problem.

174以前は、ContractBuilderでDUST_LIMIT(600)以下の値のアウトプットは生成していませんでしたが、#174で600未満(546以上)のアウトプットも生成される可能性が発生してます。その際に、Utxoレコードのバリデーションに失敗するため、Utxoでも600未満のアウトプットも許容するようにしています。