-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use stellar-core replay-in-memory catchup mode #23
base: master
Are you sure you want to change the base?
Conversation
@nebolsin I revisited this PR, it seems to me that it's ready for review already. Here I used stellar-core |
c52c033
to
44695df
Compare
This reverts commit f8b9080.
f8a6fce
to
78afe97
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
feeRows := make([]db.TxFeeHistoryRow, len(meta.V0.TxSet.Txs)) | ||
|
||
for i, txe := range meta.V0.TxSet.Txs { | ||
txHash, hashErr := util.HashTransactionInEnvelope(txe, networkPassphrase) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@charlie-wasp looks like you forgot to include util.HashTransactionInEnvelope
:
go build -o dist/astrologer -v
github.com/astroband/astrologer/es
# github.com/astroband/astrologer/es
es/ledger_serializer.go:55:22: undefined: util.HashTransactionInEnvelope
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's weird, I include util
package here. I don't have any build errors on my dev machine, I'll try to investigate this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@charlie-wasp yep, but there seems to be no HashTransactionInEnvelope
method in github.com/astroband/astrologer/util package.
Addresses #20
This change is