Skip to content
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

Fix Backend To Run With Regtest PoS Node #536

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion routes/exchange_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func NewLowDifficultyBlockchainWithParams(t *testing.T, params *lib.DeSoParams)
Version: 0,
PrevBlockHash: lib.MustDecodeHexBlockHash("0000000000000000000000000000000000000000000000000000000000000000"),
TransactionMerkleRoot: lib.MustDecodeHexBlockHash("097158f0d27e6d10565c4dc696c784652c3380e0ff8382d3599a4d18b782e965"),
TstampNanoSecs: int64(1560735050),
TstampNanoSecs: 1560735050,
Height: uint64(0),
Nonce: uint64(0),
// No ExtraNonce is set in the genesis block
Expand Down
1 change: 0 additions & 1 deletion routes/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -4101,7 +4101,6 @@ func (fes *APIServer) simulateSubmitTransaction(utxoView *lib.UtxoView, txn *lib
return utxoView.ConnectTransaction(
txn,
txn.Hash(),
0,
bestHeight,
0,
false,
Expand Down
Loading