Skip to content

Commit

Permalink
Merge branch 'master' into feature/toml_formatting_ci_check
Browse files Browse the repository at this point in the history
  • Loading branch information
MujkicA committed Feb 21, 2024
2 parents 31a1ddd + 8cee77a commit ef5b1d3
Show file tree
Hide file tree
Showing 11 changed files with 324 additions and 202 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -605,34 +605,6 @@ jobs:
ENV: 'fueldevsway.env'
DELETE_INFRA: true

# Deploy Latest Fuel-Core Release
# TODO: remove deploy steps after the old cluster is decommissioned
deploy:
if: github.ref == 'refs/heads/master'
needs:
- publish-docker-image
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Set Environment Variables
run: |
tag=(`echo $GITHUB_SHA | cut -c1-7`)
echo "IMAGE_TAG=`echo sha-$tag`" >> $GITHUB_ENV
echo "DEPLOYMENT_VERSION=$(echo $GITHUB_SHA)" >> $GITHUB_ENV
- name: Deploy Fuel-Core Developer Environment
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Deploy Fuel-Core on k8s
repo: FuelLabs/fuel-deployment
ref: refs/heads/master
token: ${{ secrets.REPO_TOKEN }}
inputs: '{ "k8s-type": "${{ env.K8S }}", "config-directory": "${{ env.CONFIG }}", "config-env": "${{ env.ENV }}", "deployment-version": "${{ env.DEPLOYMENT_VERSION }}", "image-tag": "${{ env.IMAGE_TAG }}", "delete-infra": "${{ env.DELETE_INFRA }}" }'
env:
K8S: 'eks'
CONFIG: 'fuel-dev1'
ENV: 'fueldevsway.env'
DELETE_INFRA: true

cargo-audit:
runs-on: ubuntu-latest
continue-on-error: true
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Description of the upcoming release here.

### Changed

- [#1663](https://github.com/FuelLabs/fuel-core/pull/1663): Reduce the punishment criteria for mempool gossipping.
- [#1658](https://github.com/FuelLabs/fuel-core/pull/1658): Removed `Receipts` table. Instead, receipts are part of the `TransactionStatuses` table.
- [#1640](https://github.com/FuelLabs/fuel-core/pull/1640): Upgrade to fuel-vm 0.45.0.
- [#1635](https://github.com/FuelLabs/fuel-core/pull/1635): Move updating of the owned messages and coins to off-chain worker.
Expand Down
7 changes: 6 additions & 1 deletion crates/fuel-core/src/service/adapters/graphql_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ impl TxPoolPort for TxPoolAdapter {
&self,
txs: Vec<Arc<Transaction>>,
) -> Vec<anyhow::Result<InsertionResult>> {
self.service.insert(txs).await
self.service
.insert(txs)
.await
.into_iter()
.map(|res| res.map_err(anyhow::Error::from))
.collect()
}

fn tx_update_subscribe(
Expand Down
Loading

0 comments on commit ef5b1d3

Please sign in to comment.